CustomerData constructor

CustomerData({
  1. required String id,
  2. required String name,
  3. required String? defaultPaymentMethod,
  4. required String? description,
  5. required String email,
  6. required String? invoicePrefix,
  7. required int createdAt,
  8. required String? businessVatId,
  9. required String? ewallet,
})

Implementation

CustomerData({
  required this.id,
  required this.name,
  required this.defaultPaymentMethod,
  required this.description,
  required this.email,
  required this.invoicePrefix,
  required this.createdAt,
  required this.businessVatId,
  required this.ewallet,
});