toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final explicitContentDetectionConfig = this.explicitContentDetectionConfig;
final faceDetectionConfig = this.faceDetectionConfig;
final labelDetectionConfig = this.labelDetectionConfig;
final objectTrackingConfig = this.objectTrackingConfig;
final personDetectionConfig = this.personDetectionConfig;
final segments = this.segments;
final shotChangeDetectionConfig = this.shotChangeDetectionConfig;
final speechTranscriptionConfig = this.speechTranscriptionConfig;
final textDetectionConfig = this.textDetectionConfig;
return {
'explicitContentDetectionConfig': ?explicitContentDetectionConfig,
'faceDetectionConfig': ?faceDetectionConfig,
'labelDetectionConfig': ?labelDetectionConfig,
'objectTrackingConfig': ?objectTrackingConfig,
'personDetectionConfig': ?personDetectionConfig,
'segments': ?segments,
'shotChangeDetectionConfig': ?shotChangeDetectionConfig,
'speechTranscriptionConfig': ?speechTranscriptionConfig,
'textDetectionConfig': ?textDetectionConfig,
};
}