Customer constructor

Customer({
  1. int? id,
  2. String? firstName,
  3. String? lastName,
  4. String? email,
  5. String? customerCode,
  6. String? phone,
})

Implementation

Customer({
  this.id,
  this.firstName,
  this.lastName,
  this.email,
  this.customerCode,
  this.phone,
});