GoogleCloudDocumentaiV1beta3NormalizedVertex.fromJson constructor

GoogleCloudDocumentaiV1beta3NormalizedVertex.fromJson(
  1. Map _json
)

Implementation

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