User constructor

User({
  1. int? id,
  2. String? name,
  3. String? phoneNumber,
  4. String? email,
  5. String? dateOfBirth,
  6. String? gender,
  7. String? insuranceId,
  8. String? policyNumber,
  9. String? nationalityNumber,
  10. int? height,
  11. int? weight,
  12. String? bloodType,
  13. String? smoker,
  14. String? alcoholic,
  15. String? relationType,
  16. String? maritalStatus,
  17. String? createdAt,
  18. String? updatedAt,
})

Implementation

User({
  this.id,
  this.name,
  this.phoneNumber,
  this.email,
  this.dateOfBirth,
  this.gender,
  this.insuranceId,
  this.policyNumber,
  this.nationalityNumber,
  this.height,
  this.weight,
  this.bloodType,
  this.smoker,
  this.alcoholic,
  this.relationType,
  this.maritalStatus,
  this.createdAt,
  this.updatedAt
});