toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (this.continueClosedCaption != null) {
    json[r'continue_closed_caption'] = this.continueClosedCaption;
  } else {
    json[r'continue_closed_caption'] = null;
  }
  if (this.continueHls != null) {
    json[r'continue_hls'] = this.continueHls;
  } else {
    json[r'continue_hls'] = null;
  }
  if (this.continueRecording != null) {
    json[r'continue_recording'] = this.continueRecording;
  } else {
    json[r'continue_recording'] = null;
  }
  if (this.continueRtmpBroadcasts != null) {
    json[r'continue_rtmp_broadcasts'] = this.continueRtmpBroadcasts;
  } else {
    json[r'continue_rtmp_broadcasts'] = null;
  }
  if (this.continueTranscription != null) {
    json[r'continue_transcription'] = this.continueTranscription;
  } else {
    json[r'continue_transcription'] = null;
  }
  return json;
}