LoginController constructor
- AuthService _authService, {
- LoginViewStage initial = LoginViewStage.signUp,
- MyUser? myUser,
- void onSuccess({
- bool? signedUp,
Implementation
LoginController(
this._authService, {
LoginViewStage initial = LoginViewStage.signUp,
MyUser? myUser,
this.onSuccess,
}) : stage = Rx(initial),
_myUser = myUser;