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