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,
);