Customer constructor

Customer({
  1. Address? address,
  2. int? balance,
  3. int? created,
  4. String? currency,
  5. dynamic defaultSource,
  6. bool? delinquent,
  7. String? description,
  8. dynamic discount,
  9. String? email,
  10. String? id,
  11. String? invoicePrefix,
  12. dynamic invoiceSettings,
  13. bool? livemode,
  14. Map<String, dynamic>? metadata,
  15. String? name,
  16. int? nextInvoiceSequence,
  17. String? object,
  18. String? phone,
  19. List<String>? preferredLocales,
  20. Shipping? shipping,
  21. dynamic sources,
  22. dynamic subscriptions,
  23. String? taxExempt,
  24. dynamic taxIds,
})

Implementation

Customer(
    {this.address,
    this.balance,
    this.created,
    this.currency,
    this.defaultSource,
    this.delinquent,
    this.description,
    this.discount,
    this.email,
    this.id,
    this.invoicePrefix,
    this.invoiceSettings,
    this.livemode,
    this.metadata,
    this.name,
    this.nextInvoiceSequence,
    this.object,
    this.phone,
    this.preferredLocales,
    this.shipping,
    this.sources,
    this.subscriptions,
    this.taxExempt,
    this.taxIds});