TeacherData constructor

const TeacherData({
  1. required int id,
  2. required String fullName,
  3. required DateTime birthday,
  4. required String genderId,
  5. required String teacherPositionId,
  6. required bool locked,
  7. required bool active,
  8. required int universityId,
  9. String? countryId,
  10. String? youtubeVideoCode,
  11. required String email,
  12. String? skype,
  13. String? facebook,
  14. String? phoneNumber,
  15. String? description,
  16. String? note,
  17. 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,
});