TeacherData constructor
const
TeacherData({
- required int id,
- required String fullName,
- required DateTime birthday,
- required String genderId,
- required String teacherPositionId,
- required bool locked,
- required bool active,
- required int universityId,
- String? countryId,
- String? youtubeVideoCode,
- required String email,
- String? skype,
- String? facebook,
- String? phoneNumber,
- String? description,
- String? note,
- String? imagePath,
Implementation
const TeacherData({
required this.id,
required this.fullName,
required this.birthday,
required this.genderId,
required this.teacherPositionId,
required this.locked,
required this.active,
required this.universityId,
this.countryId,
this.youtubeVideoCode,
required this.email,
this.skype,
this.facebook,
this.phoneNumber,
this.description,
this.note,
this.imagePath,
});