VoucherPaymentManager constructor

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

VoucherPaymentManager constructor returns an instance of VoucherPaymentManager

Implementation

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