MobileMoneyRequest constructor

MobileMoneyRequest({
  1. required String amount,
  2. required String currency,
  3. required String txRef,
  4. required String fullName,
  5. required String email,
  6. required String phoneNumber,
  7. String network = "",
  8. String voucher = "",
  9. String country = "",
  10. String? redirectUrl,
})

Implementation

MobileMoneyRequest(
    {required this.amount,
    required this.currency,
    required this.txRef,
    required this.fullName,
    required this.email,
    required this.phoneNumber,
    this.network = "",
    this.voucher = "",
    this.country = "",
    this.redirectUrl});