TInitOtpAuthBody constructor

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

Implementation

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