SchoolHourEvent constructor

SchoolHourEvent(
  1. DateTime timeFrom,
  2. DateTime timeTo,
  3. Color color,
  4. String subject,
  5. SpecialHourType? specialHourType,
  6. List<String> departments,
  7. String classroom,
  8. List<String> teachers,
  9. List<String> groups,
)

Implementation

SchoolHourEvent(
  this.timeFrom,
  this.timeTo,
  this.color,
  this.subject,
  this.specialHourType,
  List<String> departments,
  this.classroom,
  List<String> teachers,
  List<String> groups,
)   : departments = List.unmodifiable(departments),
      teachers = List.unmodifiable(teachers),
      groups = List.unmodifiable(groups);