GoogleCloudVideointelligenceV1LabelDetectionConfig.fromJson constructor

GoogleCloudVideointelligenceV1LabelDetectionConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudVideointelligenceV1LabelDetectionConfig.fromJson(core.Map json_)
  : this(
      frameConfidenceThreshold:
          (json_['frameConfidenceThreshold'] as core.num?)?.toDouble(),
      labelDetectionMode: json_['labelDetectionMode'] as core.String?,
      model: json_['model'] as core.String?,
      stationaryCamera: json_['stationaryCamera'] as core.bool?,
      videoConfidenceThreshold:
          (json_['videoConfidenceThreshold'] as core.num?)?.toDouble(),
    );