PersonalInfo constructor

PersonalInfo({
  1. String? imageURL,
  2. String? fullName,
  3. String? lastName,
  4. String? firstName,
  5. String? middleName,
  6. String? dateOfBirth,
  7. String? formattedDateOfBirth,
  8. String? mobileNumber,
  9. String? nationality,
  10. String? gender,
})

Implementation

PersonalInfo(
    {this.imageURL,
    this.fullName,
    this.lastName,
    this.firstName,
    this.middleName,
    this.dateOfBirth,
    this.formattedDateOfBirth,
    this.mobileNumber,
    this.nationality,
    this.gender});