NewCustomerModel constructor
NewCustomerModel({
- required String name,
- String? image,
- String? nif,
- AddressModel? address,
- String? notes,
- DateTime? birthDate,
- ContactPersonModel? contactPerson1,
- ContactPersonModel? contactPerson2,
Returns a new NewCustomerModel instance.
Implementation
NewCustomerModel({
required this.name,
this.image,
this.nif,
this.address,
this.notes,
this.birthDate,
this.contactPerson1,
this.contactPerson2,
});