Customer constructor

Customer({
  1. String? customerId,
  2. String? fullName,
  3. String? firstName,
  4. String? lastName,
  5. String? phoneNumber,
  6. String? email,
  7. Address? address,
  8. String? zipcode,
  9. Gender? gender,
  10. String? birthYear,
  11. String? birthMonth,
  12. String? birthDay,
  13. String? firstNameKana,
  14. String? lastNameKana,
})

Implementation

Customer({
  this.customerId,
  this.fullName,
  this.firstName,
  this.lastName,
  this.phoneNumber,
  this.email,
  this.address,
  this.zipcode,
  this.gender,
  this.birthYear,
  this.birthMonth,
  this.birthDay,
  this.firstNameKana,
  this.lastNameKana,
});