StandardRequest constructor

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

Implementation

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