toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'tutor'] = this.tutor;
json[r'customer'] = this.customer;
json[r'subject'] = this.subject;
json[r'invitation_dates'] = this.invitationDates;
return json;
}