Customer constructor
const
Customer({
- required String id,
- required String type,
- required String name,
- required String country,
- String? legalForm,
- String? email,
- String? phone,
- String? street,
- String? houseNumber,
- String? zip,
- String? city,
- String? vatId,
- String? shortCode,
- bool isAuthority = false,
- String? note,
- String? externalId,
- String language = 'de',
- String? createdAt,
- String? updatedAt,
Implementation
const Customer({
required this.id,
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 = false,
this.note,
this.externalId,
this.language = 'de',
this.createdAt,
this.updatedAt,
});