TInitOtpAuthBody constructor

const TInitOtpAuthBody({
  1. String? timestampMs,
  2. String? organizationId,
  3. required String otpType,
  4. required String contact,
  5. num? otpLength,
  6. v1EmailCustomizationParams? emailCustomization,
  7. v1SmsCustomizationParams? smsCustomization,
  8. String? userIdentifier,
  9. String? sendFromEmailAddress,
  10. bool? alphanumeric,
  11. String? sendFromEmailSenderName,
  12. String? replyToEmailAddress,
})

Implementation

const TInitOtpAuthBody({
   this.timestampMs,
   this.organizationId,
  required  this.otpType,
  required  this.contact,
   this.otpLength,
   this.emailCustomization,
   this.smsCustomization,
   this.userIdentifier,
   this.sendFromEmailAddress,
   this.alphanumeric,
   this.sendFromEmailSenderName,
   this.replyToEmailAddress,
});