Customer constructor

Customer({
  1. Address? address,
  2. int? balance,
  3. int? created,
  4. String? currency,
  5. String? defaultSource,
  6. bool? delinquent,
  7. String? description,
  8. Discount? discount,
  9. String? email,
  10. String? invoicePrefix,
  11. bool? livemode,
  12. Map<String, dynamic>? metadata,
  13. String? name,
  14. int? nextInvoiceSequence,
  15. String? phone,
  16. List<String>? preferredLocales,
  17. List<Source>? sources,
})

Implementation

Customer({
  this.address,
  this.balance,
  this.created,
  this.currency,
  this.defaultSource,
  this.delinquent,
  this.description,
  this.discount,
  this.email,
  this.invoicePrefix,
  this.livemode,
  this.metadata,
  this.name,
  this.nextInvoiceSequence,
  this.phone,
  this.preferredLocales,
  this.sources,
});