CheckoutResponse constructor

CheckoutResponse({
  1. required int amount,
  2. required String currency,
  3. FlutterwaveCustomer? customer,
  4. String? flw_ref,
  5. required bool status,
  6. required String tx_ref,
  7. required int transaction_id,
})

Implementation

CheckoutResponse(
    {required this.amount,
    required this.currency,
    this.customer,
    this.flw_ref,
    required this.status,
    required this.tx_ref,
    required this.transaction_id});