StandardRequest constructor

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

Implementation

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