Substitution constructor

Substitution(
  1. String affectedClass,
  2. int lesson,
  3. String subTeacher,
  4. String subject, {
  5. String notes = '',
  6. String? orgTeacher,
  7. String? room,
})

Implementation

Substitution(
  this.affectedClass,
  this.lesson,
  this.subTeacher,
  this.subject, {
  this.notes = '',
  this.orgTeacher,
  this.room,
});