LokotroPaymentSubmitResponse constructor

const LokotroPaymentSubmitResponse({
  1. required bool success,
  2. required String status,
  3. required bool requiresOtp,
  4. String? otpSentTo,
  5. String? estimatedCompletion,
  6. String? systemRef,
  7. String? onafriqReference,
  8. String? onafriqStatus,
  9. String? phoneNumber,
  10. double? processingFee,
  11. double? totalAmount,
  12. required String message,
})

Implementation

const LokotroPaymentSubmitResponse({
  required this.success,
  required this.status,
  required this.requiresOtp,
  this.otpSentTo,
  this.estimatedCompletion,
  this.systemRef,
  this.onafriqReference,
  this.onafriqStatus,
  this.phoneNumber,
  this.processingFee,
  this.totalAmount,
  required this.message,
});