internalLinkTypePhoneNumberConfirmation property

InternalLinkTypePhoneNumberConfirmation? internalLinkTypePhoneNumberConfirmation

The link can be used to confirm ownership of a phone number to prevent account deletion. Call sendPhoneNumberConfirmationCode with the given hash and phone number to process the link

Implementation

InternalLinkTypePhoneNumberConfirmation?
    get internalLinkTypePhoneNumberConfirmation {
  if (this is InternalLinkTypePhoneNumberConfirmation) {
    return this as InternalLinkTypePhoneNumberConfirmation;
  }
  return null;
}