emailAddressAuthenticationCode property

EmailAddressAuthenticationCode? emailAddressAuthenticationCode

An authentication code delivered to a user's email address

Implementation

EmailAddressAuthenticationCode? get emailAddressAuthenticationCode {
  if (this is EmailAddressAuthenticationCode) {
    return this as EmailAddressAuthenticationCode;
  }
  return null;
}