toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (boundingPolyConfig != null)
        'boundingPolyConfig': boundingPolyConfig!.toJson(),
      if (eventConfig != null) 'eventConfig': eventConfig!.toJson(),
      if (humanAnnotationConfig != null)
        'humanAnnotationConfig': humanAnnotationConfig!.toJson(),
      if (imageClassificationConfig != null)
        'imageClassificationConfig': imageClassificationConfig!.toJson(),
      if (objectDetectionConfig != null)
        'objectDetectionConfig': objectDetectionConfig!.toJson(),
      if (objectTrackingConfig != null)
        'objectTrackingConfig': objectTrackingConfig!.toJson(),
      if (polylineConfig != null) 'polylineConfig': polylineConfig!.toJson(),
      if (segmentationConfig != null)
        'segmentationConfig': segmentationConfig!.toJson(),
      if (textClassificationConfig != null)
        'textClassificationConfig': textClassificationConfig!.toJson(),
      if (textEntityExtractionConfig != null)
        'textEntityExtractionConfig': textEntityExtractionConfig!.toJson(),
      if (videoClassificationConfig != null)
        'videoClassificationConfig': videoClassificationConfig!.toJson(),
    };