USSDPaymentManager constructor

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

USSDPaymentManager constructor Available for only payments with NGN currency returns an instance of USSDPaymentManager

Implementation

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