emailAddressResetStateAvailable property

EmailAddressResetStateAvailable? emailAddressResetStateAvailable

Email address can be reset after the given period. Call resetAuthenticationEmailAddress to reset it and allow the user to authorize with a code sent to the user's phone number

Implementation

EmailAddressResetStateAvailable? get emailAddressResetStateAvailable {
  if (this is EmailAddressResetStateAvailable) {
    return this as EmailAddressResetStateAvailable;
  }
  return null;
}