toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() {
  Map<String, dynamic> json = super.toJson();
  json['meetingId'] = meetingId;
  json['name'] = name;
  json['start_date'] = startDate;
  json['end_date'] = endDate;
  json['attendees'] = attendees;
  json['chat_dialog_id'] = chatDialogId;
  json['host_id'] = hostId;
  json['chat'] = withChat;
  json['record'] = record;
  json['public'] = public;
  json['scheduled'] = scheduled;
  json['notify'] = notify;
  json['notify_before'] = notifyBefore;

  return json;
}