PersonalInfo constructor

PersonalInfo(
  1. String firstName,
  2. String middleName,
  3. String lastName,
  4. String fullName,
  5. String email,
  6. String phoneNumber,
  7. String gender,
  8. String dateOfBirth,
  9. String formattedDateOfBirth,
  10. String occupation,
)

Implementation

PersonalInfo(
    this.firstName,
    this.middleName,
    this.lastName,
    this.fullName,
    this.email,
    this.phoneNumber,
    this.gender,
    this.dateOfBirth,
    this.formattedDateOfBirth,
    this.occupation);