StudentProfile constructor

const StudentProfile({
  1. Key? key,
  2. required String profilePhoto,
  3. required String studentName,
  4. required String enrollmentNo,
  5. required String branch,
  6. required String semester,
  7. required String division,
  8. required String rollNo,
  9. required String batch,
  10. required String studentPhoneNo1,
  11. required String studentPhoneNo2,
  12. required String studentEmail1,
  13. required String studentEmail2,
  14. required String fatherPhoneNo,
  15. required String fatherEmail,
  16. required String motherPhoneNo,
  17. required String motherEmail,
  18. required String guardianPhoneNo,
  19. required String guardianEmail,
  20. required String branchSpecializationTitle,
  21. required String semesterHeaderTitle,
  22. required String status,
  23. required String divisionTitle,
  24. required String rollNoTitle,
  25. required String currentBatchTitle,
  26. required String bloodGroup,
  27. required String birthDate,
})

Implementation

const StudentProfile({super.key,
  required this.profilePhoto,
  required this.studentName,
  required this.enrollmentNo,
  required this.branch,
  required this.semester,
  required this.division,
  required this.rollNo,
  required this.batch,
  required this.studentPhoneNo1,
  required this.studentPhoneNo2,
  required this.studentEmail1,
  required this.studentEmail2,
  required this.fatherPhoneNo,
  required this.fatherEmail,
  required this.motherPhoneNo,
  required this.motherEmail,
  required this.guardianPhoneNo,
  required this.guardianEmail,
  required this.branchSpecializationTitle,
  required this.semesterHeaderTitle,
  required this.status,
  required this.divisionTitle,
  required this.rollNoTitle,
  required this.currentBatchTitle,
  required this.bloodGroup,
  required this.birthDate});