FlwCheckoutRequest constructor

FlwCheckoutRequest({
  1. required String redirectUrl,
  2. required num amount,
  3. required String email,
  4. required String transactionRef,
  5. required String customerName,
  6. required String currency,
  7. required String publicKey,
  8. void onError(
    1. String message
    )?,
})

Implementation

FlwCheckoutRequest({
  required this.redirectUrl,
  required this.amount,
  required this.email,
  required this.transactionRef,
  required this.customerName,
  required this.currency,
  required this.publicKey,
  // this.onSuccess,
  this.onError,
});