CreateCustomerOpts constructor

CreateCustomerOpts({
  1. Address? address,
  2. int? balance,
  3. String? coupon,
  4. String? description,
  5. String? email,
  6. String? invoicePrefix,
  7. Map<String, dynamic>? metadata,
  8. String? name,
  9. int? nextInvoiceSequence,
  10. String? paymentMethod,
  11. String? phone,
  12. List<String>? preferredLocals,
  13. String? promotionCode,
  14. String? source,
})

Implementation

CreateCustomerOpts({
  this.address,
  this.balance,
  this.coupon,
  this.description,
  this.email,
  this.invoicePrefix,
  this.metadata,
  this.name,
  this.nextInvoiceSequence,
  this.paymentMethod,
  this.phone,
  this.preferredLocals,
  this.promotionCode,
  this.source,
});