PaymentMethodDomain constructor

const PaymentMethodDomain({
  1. required PaymentMethodDomainResourcePaymentMethodStatus applePay,
  2. required DateTime created,
  3. required String domainName,
  4. required bool enabled,
  5. required PaymentMethodDomainResourcePaymentMethodStatus googlePay,
  6. required String id,
  7. required PaymentMethodDomainResourcePaymentMethodStatus link,
  8. required bool livemode,
  9. required PaymentMethodDomainResourcePaymentMethodStatus paypal,
})

PaymentMethodDomainResourcePaymentMethodDomain

A payment method domain represents a web domain that you have registered with Stripe. Stripe Elements use registered payment method domains to control where certain payment methods are shown. Related guides: [Payment method domains](https://stripe.com/docs/payments/payment-methods/pmd-registration).

Implementation

const PaymentMethodDomain({
  required this.applePay,
  required this.created,
  required this.domainName,
  required this.enabled,
  required this.googlePay,
  required this.id,
  required this.link,
  required this.livemode,
  required this.paypal,
});