PaymentConfig constructor

PaymentConfig({
  1. required String environment,
  2. required String action,
  3. required String clientId,
  4. required String merchantId,
  5. required Order order,
  6. required Billing billing,
  7. required Shipping shipping,
  8. required Appearance appearance,
})

Creates a new instance of PaymentConfig with the given parameters.

Implementation

PaymentConfig({
  required this.environment,
  required this.action,
  required this.clientId,
  required this.merchantId,
  required this.order,
  required this.billing,
  required this.shipping,
  required this.appearance,
});