Customer constructor

Customer({
  1. int? dealerCustomerId,
  2. String? masterCode,
  3. String? customerCode,
  4. String? password,
  5. String? firstName,
  6. String? lastName,
  7. int? gender,
  8. String? birthDate,
  9. String? gsmNumber,
  10. String? email,
  11. String? address,
  12. int? dealerId,
})

Implementation

Customer({
  this.dealerCustomerId,
  this.masterCode,
  this.customerCode,
  this.password,
  this.firstName,
  this.lastName,
  this.gender,
  this.birthDate,
  this.gsmNumber,
  this.email,
  this.address,
  this.dealerId,
});