CustomerInput constructor

const CustomerInput({
  1. required String type,
  2. required String name,
  3. required String country,
  4. String? legalForm,
  5. String? email,
  6. String? phone,
  7. String? street,
  8. String? houseNumber,
  9. String? zip,
  10. String? city,
  11. String? vatId,
  12. String? shortCode,
  13. bool? isAuthority,
  14. String? note,
  15. String? externalId,
  16. String? language,
})

Implementation

const CustomerInput({
  required this.type,
  required this.name,
  required this.country,
  this.legalForm,
  this.email,
  this.phone,
  this.street,
  this.houseNumber,
  this.zip,
  this.city,
  this.vatId,
  this.shortCode,
  this.isAuthority,
  this.note,
  this.externalId,
  this.language,
});