toJson method

dynamic toJson ()

Converts a Change to JSON.

Implementation

dynamic toJson() => {
  'form': this.form,
  'lesson': this.lesson,
  'subject': this.subject,
  'teacher': this.teacher,
  'room': this.room,
  'info': this.info
};