PersonalInfo constructor

PersonalInfo(
  1. String title,
  2. String firstName,
  3. String middleName,
  4. String lastName,
  5. String fullName,
  6. String maidenName,
  7. String gender,
  8. String email,
  9. String phoneNumber,
  10. String dateOfBirth,
  11. String formattedDateOfBirth,
  12. String height,
  13. String maritalStatus,
  14. String imageUrl,
  15. String religion,
  16. String signature,
)

Implementation

PersonalInfo(
    this.title,
    this.firstName,
    this.middleName,
    this.lastName,
    this.fullName,
    this.maidenName,
    this.gender,
    this.email,
    this.phoneNumber,
    this.dateOfBirth,
    this.formattedDateOfBirth,
    this.height,
    this.maritalStatus,
    this.imageUrl,
    this.religion,
    this.signature);