LoginView constructor
- Key? key,
- LoginViewStage initial = LoginViewStage.signUp,
- MyUser? myUser,
- void onSuccess({
- bool? signedUp,
Implementation
const LoginView({
super.key,
this.initial = LoginViewStage.signUp,
this.myUser,
this.onSuccess,
});