UserModel constructor

UserModel({
  1. String? prefix,
  2. String? firstName,
  3. String? lastName,
  4. String? nickName,
  5. String? gender,
  6. String? image,
  7. String? email,
  8. int? age,
  9. String? mobile,
  10. AddressModel? address,
  11. String? occupation,
  12. String? maritalStatus,
  13. String? education,
})

Implementation

UserModel({
  this.prefix,
  this.firstName,
  this.lastName,
  this.nickName,
  this.gender,
  this.image,
  this.email,
  this.age,
  this.mobile,
  this.address,
  this.occupation,
  this.maritalStatus,
  this.education,
});