User constructor
User({
- int? id,
- String? name,
- String? phoneNumber,
- String? email,
- String? dateOfBirth,
- String? gender,
- String? insuranceId,
- String? policyNumber,
- String? nationalityNumber,
- int? height,
- int? weight,
- String? bloodType,
- String? smoker,
- String? alcoholic,
- String? relationType,
- String? maritalStatus,
- String? createdAt,
- 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
});