Customer constructor

Customer({
  1. required _CustomerObject object,
  2. required String id,
  3. required InvoiceSettings invoiceSettings,
  4. String? description,
  5. String? email,
  6. Map<String, dynamic>? metadata,
  7. String? name,
})

Implementation

Customer({
  required this.object,
  required this.id,
  required this.invoiceSettings,
  this.description,
  this.email,
  this.metadata,
  this.name,
});