Flutterwave constructor

Flutterwave({
  1. required BuildContext context,
  2. required String publicKey,
  3. required String txRef,
  4. required String amount,
  5. required Customer customer,
  6. required String paymentOptions,
  7. required Customization customization,
  8. required String redirectUrl,
  9. required bool isTestMode,
  10. required String currency,
  11. String? paymentPlanId,
  12. List<SubAccount>? subAccounts,
  13. Map? meta,
})

Implementation

Flutterwave(
    {required this.context,
    required this.publicKey,
    required this.txRef,
    required this.amount,
    required this.customer,
    required this.paymentOptions,
    required this.customization,
    required this.redirectUrl,
    required this.isTestMode,
    required this.currency,
    this.paymentPlanId,
    this.subAccounts,
    this.meta});