GoogleCloudVideointelligenceV1PersonDetectionConfig.fromJson constructor
GoogleCloudVideointelligenceV1PersonDetectionConfig.fromJson(
- Map json_
Implementation
GoogleCloudVideointelligenceV1PersonDetectionConfig.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,
includePoseLandmarks: json_.containsKey('includePoseLandmarks')
? json_['includePoseLandmarks'] as core.bool
: null,
);