GenerateOtpModel constructor

GenerateOtpModel({
  1. String? message,
  2. int? responseCode,
  3. String? validationToken,
  4. String? generatedOn,
  5. String? expiresOn,
  6. int? expiryInSeconds,
  7. int? resendInSeconds,
  8. int? resendOTPDelayInSeconds,
  9. int? otpExpiryInMinutes,
})

Implementation

GenerateOtpModel(
    {this.message,
    this.responseCode,
    this.validationToken,
    this.generatedOn,
    this.expiresOn,
    this.expiryInSeconds,
    this.resendInSeconds,
    this.resendOTPDelayInSeconds,
    this.otpExpiryInMinutes});