NewCustomerModel constructor

NewCustomerModel({
  1. required String name,
  2. String? image,
  3. String? nif,
  4. AddressModel? address,
  5. String? notes,
  6. DateTime? birthDate,
  7. ContactPersonModel? contactPerson1,
  8. 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,
});