GooglePrivacyDlpV2ImageLocation.fromJson constructor
GooglePrivacyDlpV2ImageLocation.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2ImageLocation.fromJson(core.Map json_)
: this(
boundingBoxes: json_.containsKey('boundingBoxes')
? (json_['boundingBoxes'] as core.List)
.map((value) => GooglePrivacyDlpV2BoundingBox.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);