UniversityData constructor

const UniversityData({
  1. required int id,
  2. required String code,
  3. required String name,
  4. required String nameInEnglish,
  5. required bool active,
  6. required bool locked,
  7. String? imagePath,
  8. String? description,
  9. String? note,
})

Implementation

const UniversityData({
  required this.id,
  required this.code,
  required this.name,
  required this.nameInEnglish,
  required this.active,
  required this.locked,
  this.imagePath,
  this.description,
  this.note,
});