LokotroEWalletVerifyResponse constructor

LokotroEWalletVerifyResponse({
  1. required bool success,
  2. required String status,
  3. String? transactionReference,
  4. double? debitAmount,
  5. double? walletBalance,
  6. List<String>? emailsSent,
  7. String? completedAt,
  8. required String message,
  9. String? paymentId,
  10. Map<String, dynamic>? paymentInfo,
})

Implementation

LokotroEWalletVerifyResponse({
  required this.success,
  required this.status,
  this.transactionReference,
  this.debitAmount,
  this.walletBalance,
  this.emailsSent,
  this.completedAt,
  required this.message,
  this.paymentId,
  this.paymentInfo,
});