toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (imageBoundingPolyAnnotation != null)
        'imageBoundingPolyAnnotation': imageBoundingPolyAnnotation!.toJson(),
      if (imageClassificationAnnotation != null)
        'imageClassificationAnnotation':
            imageClassificationAnnotation!.toJson(),
      if (imagePolylineAnnotation != null)
        'imagePolylineAnnotation': imagePolylineAnnotation!.toJson(),
      if (imageSegmentationAnnotation != null)
        'imageSegmentationAnnotation': imageSegmentationAnnotation!.toJson(),
      if (textClassificationAnnotation != null)
        'textClassificationAnnotation':
            textClassificationAnnotation!.toJson(),
      if (textEntityExtractionAnnotation != null)
        'textEntityExtractionAnnotation':
            textEntityExtractionAnnotation!.toJson(),
      if (videoClassificationAnnotation != null)
        'videoClassificationAnnotation':
            videoClassificationAnnotation!.toJson(),
      if (videoEventAnnotation != null)
        'videoEventAnnotation': videoEventAnnotation!.toJson(),
      if (videoObjectTrackingAnnotation != null)
        'videoObjectTrackingAnnotation':
            videoObjectTrackingAnnotation!.toJson(),
    };