LokotroEWalletResendResponse constructor

LokotroEWalletResendResponse({
  1. required bool success,
  2. required String status,
  3. String? otpSentTo,
  4. int? resendCount,
  5. int? maxResends,
  6. String? resentAt,
  7. String? expiresAt,
  8. required String message,
})

Implementation

LokotroEWalletResendResponse({
  required this.success,
  required this.status,
  this.otpSentTo,
  this.resendCount,
  this.maxResends,
  this.resentAt,
  this.expiresAt,
  required this.message,
});