GoogleCloudDocumentaiV1beta2DocumentPageImage.fromJson constructor

GoogleCloudDocumentaiV1beta2DocumentPageImage.fromJson(
  1. Map _json
)

Implementation

GoogleCloudDocumentaiV1beta2DocumentPageImage.fromJson(core.Map _json)
    : this(
        content: _json.containsKey('content')
            ? _json['content'] as core.String
            : null,
        height:
            _json.containsKey('height') ? _json['height'] as core.int : null,
        mimeType: _json.containsKey('mimeType')
            ? _json['mimeType'] as core.String
            : null,
        width: _json.containsKey('width') ? _json['width'] as core.int : null,
      );