CardPaymentManager constructor

CardPaymentManager({
  1. required String publicKey,
  2. required String encryptionKey,
  3. required String currency,
  4. required String amount,
  5. required String email,
  6. required String fullName,
  7. required String txRef,
  8. required bool isDebugMode,
  9. String? country,
  10. String? phoneNumber,
  11. int? frequency,
  12. int? duration,
  13. bool? isPermanent,
  14. String? narration,
  15. String? redirectUrl,
})

CardPaymentManager constructor

Implementation

CardPaymentManager(
    {required this.publicKey,
    required this.encryptionKey,
    required this.currency,
    required this.amount,
    required this.email,
    required this.fullName,
    required this.txRef,
    required this.isDebugMode,
    this.country,
    this.phoneNumber,
    this.frequency,
    this.duration,
    this.isPermanent,
    this.narration,
    this.redirectUrl});