GoogleCloudVideointelligenceV1FaceDetectionConfig.fromJson constructor

GoogleCloudVideointelligenceV1FaceDetectionConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudVideointelligenceV1FaceDetectionConfig.fromJson(core.Map json_)
    : this(
        includeAttributes: json_.containsKey('includeAttributes')
            ? json_['includeAttributes'] as core.bool
            : null,
        includeBoundingBoxes: json_.containsKey('includeBoundingBoxes')
            ? json_['includeBoundingBoxes'] as core.bool
            : null,
        model:
            json_.containsKey('model') ? json_['model'] as core.String : null,
      );