action property
Implementation
@override
AuthAction get action {
if (_action != null) {
return _action!;
}
if (auth.currentUser != null) {
return AuthAction.link;
}
return AuthAction.signIn;
}
Implementation
set action(AuthAction value) {
_action = value;
}