StudentProfileNew constructor
const
StudentProfileNew({
- Key? key,
- required String profilePhoto,
- required String studentName,
- required String enrollmentNo,
- required String branchSpecializationTitle,
- required String branch,
- required String semesterHeaderTitle,
- required String semester,
- required String divisionTitle,
- required String division,
- required String rollNoTitle,
- required String rollNo,
- required String currentBatchTitle,
- required String batch,
- required String studentPhoneNo1,
- required String studentPhoneNo2,
- required String studentEmail1,
- required String studentEmail2,
- required String fatherPhoneNo,
- required String fatherEmail,
- required String motherPhoneNo,
- required String motherEmail,
- required String guardianPhoneNo,
- required String guardianEmail,
- required String status,
- required String bloodGroup,
- required String birthDate,
Implementation
const StudentProfileNew({
super.key,
required this.profilePhoto,
required this.studentName,
required this.enrollmentNo,
required this.branchSpecializationTitle,
required this.branch,
required this.semesterHeaderTitle,
required this.semester,
required this.divisionTitle,
required this.division,
required this.rollNoTitle,
required this.rollNo,
required this.currentBatchTitle,
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.status,
required this.bloodGroup,
required this.birthDate,
});