MobileMoneyPaymentManager constructor

MobileMoneyPaymentManager({
  1. required String publicKey,
  2. required String currency,
  3. required String amount,
  4. required String txRef,
  5. required bool isDebugMode,
  6. required String phoneNumber,
  7. required String fullName,
  8. required String email,
  9. String? network,
  10. String? redirectUrl,
})

MobileMoneyPaymentManager constructor

Implementation

MobileMoneyPaymentManager(
    {required this.publicKey,
    required this.currency,
    required this.amount,
    required this.txRef,
    required this.isDebugMode,
    required this.phoneNumber,
    required this.fullName,
    required this.email,
    this.network,
    this.redirectUrl});