PersonalInfo constructor

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

Implementation

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