GoogleCloudDatalabelingV1beta1NormalizedBoundingPoly.fromJson constructor

GoogleCloudDatalabelingV1beta1NormalizedBoundingPoly.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatalabelingV1beta1NormalizedBoundingPoly.fromJson(core.Map json_)
    : this(
        normalizedVertices: json_.containsKey('normalizedVertices')
            ? (json_['normalizedVertices'] as core.List)
                .map((value) =>
                    GoogleCloudDatalabelingV1beta1NormalizedVertex.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );