toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final audioStream = this.audioStream;
final key = this.key;
final textStream = this.textStream;
final videoStream = this.videoStream;
return {
'audioStream': ?audioStream,
'key': ?key,
'textStream': ?textStream,
'videoStream': ?videoStream,
};
}