GoogleCloudDatalabelingV1beta1BoundingPoly.fromJson constructor

GoogleCloudDatalabelingV1beta1BoundingPoly.fromJson(
  1. 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,
      );