toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'audio'] = this.audio;
json[r'backstage'] = this.backstage;
json[r'broadcasting'] = this.broadcasting;
json[r'geofencing'] = this.geofencing;
json[r'limits'] = this.limits;
json[r'recording'] = this.recording;
json[r'ring'] = this.ring;
json[r'screensharing'] = this.screensharing;
json[r'thumbnails'] = this.thumbnails;
json[r'transcription'] = this.transcription;
json[r'video'] = this.video;
return json;
}