onBeforeSignIn method

  1. @override
void onBeforeSignIn()
override

Called right before the authentication process starts.

Implementation

@override
void onBeforeSignIn() {
  if (action == AuthAction.signUp) {
    value = SigningUp();
  } else {
    super.onBeforeSignIn();
  }
}