CustomSigninWidget constructor
CustomSigninWidget({})
Implementation
CustomSigninWidget({
required this.child,
required this.onSessionSuccess,
required this.onSessionError,
required this.onReset,
super.key}) {
if (child is IForm) {
(child as IForm).setListener(onChildValidated);
} else {
ModLogger.e(tag: TAG, msg: "Unable to set custom signin");
}
}