Schedule constructor

Schedule(
  1. String dateName,
  2. String lessonName,
  3. String cabinetNumber,
  4. String teacherName,
  5. String typeLesson,
  6. bool isFirst,
  7. bool isDouble,
  8. bool isMeal,
  9. String numSchedule,
  10. String lessonNameSecond,
  11. String teacherNameSecond,
  12. String cabinetNumberSecond,
)

Implementation

Schedule(
    this.dateName,
    this.lessonName,
    this.cabinetNumber,
    this.teacherName,
    this.typeLesson,
    this.isFirst,
    this.isDouble,
    this.isMeal,
    this.numSchedule,
    this.lessonNameSecond,
    this.teacherNameSecond,
    this.cabinetNumberSecond);