Appointment constructor
Appointment({
- required int id,
- required int start,
- required int end,
- required int startTimeSlot,
- required int endTimeSlot,
- required List subjects,
- required List teachers,
- required List groups,
- required List locations,
- required String type,
- required String remark,
- required bool valid,
- required bool cancelled,
- required bool modified,
- required bool moved,
- required dynamic isNew,
- required String changeDescription,
Implementation
Appointment({
required this.id,
required this.start,
required this.end,
required this.startTimeSlot,
required this.endTimeSlot,
required this.subjects,
required this.teachers,
required this.groups,
required this.locations,
required this.type,
required this.remark,
required this.valid,
required this.cancelled,
required this.modified,
required this.moved,
required this.isNew,
required this.changeDescription,
});