action property

  1. @override
AuthAction action
inherited

Implementation

@override
AuthAction get action {
  if (_action != null) {
    return _action!;
  }

  if (auth.currentUser != null) {
    return AuthAction.link;
  }

  return AuthAction.signIn;
}
void action=(AuthAction value)
inherited

Implementation

set action(AuthAction value) {
  _action = value;
}