InternalLinkTypePhoneNumberConfirmation constructor

const InternalLinkTypePhoneNumberConfirmation({
  1. required String hash,
  2. required String phoneNumber,
  3. dynamic extra,
  4. int? clientId,
})

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

const InternalLinkTypePhoneNumberConfirmation({
  required this.hash,
  required this.phoneNumber,
  this.extra,
  this.clientId,
});