LoginView constructor

const LoginView({
  1. Key? key,
  2. LoginViewStage initial = LoginViewStage.signUp,
  3. MyUser? myUser,
  4. void onSuccess({
    1. bool? signedUp,
    })?,
})

Implementation

const LoginView({
  super.key,
  this.initial = LoginViewStage.signUp,
  this.myUser,
  this.onSuccess,
});