toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'broadcasting'] = this.broadcasting;
if (this.hls != null) {
json[r'hls'] = this.hls;
} else {
json[r'hls'] = null;
}
json[r'rtmps'] = this.rtmps;
return json;
}