EmailAddressAuthenticationCodeInfo constructor

const EmailAddressAuthenticationCodeInfo({
  1. required String emailAddressPattern,
  2. required int length,
  3. dynamic extra,
  4. int? clientId,
})

Information about the email address authentication code that was sent

Implementation

const EmailAddressAuthenticationCodeInfo({
  required this.emailAddressPattern,
  required this.length,
  this.extra,
  this.clientId,
});