GoogleCloudDatalabelingV1beta1NormalizedVertex.fromJson constructor

GoogleCloudDatalabelingV1beta1NormalizedVertex.fromJson(
  1. Map _json
)

Implementation

GoogleCloudDatalabelingV1beta1NormalizedVertex.fromJson(core.Map _json)
    : this(
        x: _json.containsKey('x')
            ? (_json['x'] as core.num).toDouble()
            : null,
        y: _json.containsKey('y')
            ? (_json['y'] as core.num).toDouble()
            : null,
      );