PaymentMethodDomainCreateOptions constructor

const PaymentMethodDomainCreateOptions({
  1. required String domainName,
  2. bool? enabled,
  3. List<String>? expand,
})

Implementation

const PaymentMethodDomainCreateOptions({
  required this.domainName,
  this.enabled,
  this.expand,
});