toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = <String, dynamic>{};
  data['auto_end_conference'] = autoEndConference;
  data['branding_logo_url'] = brandingLogoUrl;
  data['branding_icon_url'] = brandingIconUrl;
  data['branding_app_title'] = brandingAppTitle;
  data['branding_enabled'] = brandingEnabled;
  data['ask_recording_request'] = askRecordingRequest;
  data['storage_unit'] = storageUnit;
  data['external_storage_unit_config'] = externalStorageUnitConfig;
  data['show_meeting_info'] = showMeetingInfo;
  data['allow_multiple_cohost'] = allowMultipleCohost;
  data['enable_reaction'] = enableReaction;
  data['enable_private_chat'] = enablePrivateChat;
  data['enable_chat'] = enableChat;
  data['allow_profile_edit_by_host'] = allowProfileEditByHost;
  data['allow_profile_edit_by_self'] = allowProfileEditBySelf;
  return data;
}