LoginController constructor

LoginController(
  1. AuthService _authService, {
  2. LoginViewStage initial = LoginViewStage.signUp,
  3. MyUser? myUser,
  4. void onSuccess({
    1. bool? signedUp,
    })?,
})

Implementation

LoginController(
  this._authService, {
  LoginViewStage initial = LoginViewStage.signUp,
  MyUser? myUser,
  this.onSuccess,
}) : stage = Rx(initial),
     _myUser = myUser;