TInitOtpBody constructor

const TInitOtpBody({
  1. String? timestampMs,
  2. String? organizationId,
  3. required String otpType,
  4. required String contact,
  5. required String appName,
  6. num? otpLength,
  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 TInitOtpBody({
  this.timestampMs,
  this.organizationId,
  required this.otpType,
  required this.contact,
  required this.appName,
  this.otpLength,
  this.emailCustomization,
  this.smsCustomization,
  this.userIdentifier,
  this.sendFromEmailAddress,
  this.alphanumeric,
  this.sendFromEmailSenderName,
  this.expirationSeconds,
  this.replyToEmailAddress,
});