getCardPaymentManager method
Returns an instance of CardPaymentManager
Implementation
CardPaymentManager getCardPaymentManager() {
return CardPaymentManager(
publicKey: this.publicKey,
encryptionKey: this.encryptionKey,
currency: this.currency,
email: this.email,
fullName: this.fullName,
amount: this.amount,
txRef: this.txRef,
isDebugMode: this.isDebugMode,
narration: this.narration,
isPermanent: this.isPermanent,
phoneNumber: this.phoneNumber,
frequency: this.frequency,
country: this.country,
duration: this.duration,
redirectUrl: this.redirectUrl);
}