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