Configuration constructor

Configuration({
  1. Appearance? appearance,
  2. bool? allowsDelayedPaymentMethods,
  3. bool? allowsPaymentMethodsRequiringShippingAddress,
  4. String? merchantDisplayName,
  5. String? primaryButtonLabel,
  6. Customer? customer,
  7. BillingDetails? defaultBillingDetails,
  8. ShippingDetails? shippingDetails,
})

Implementation

Configuration(
    {this.appearance,
    this.allowsDelayedPaymentMethods,
    this.allowsPaymentMethodsRequiringShippingAddress,
    this.merchantDisplayName,
    this.primaryButtonLabel,
    this.customer,
    this.defaultBillingDetails,
    this.shippingDetails});