GoogleCloudDocumentaiV1beta3GcsDocument.fromJson constructor

GoogleCloudDocumentaiV1beta3GcsDocument.fromJson(
  1. Map _json
)

Implementation

GoogleCloudDocumentaiV1beta3GcsDocument.fromJson(core.Map _json)
    : this(
        gcsUri: _json.containsKey('gcsUri')
            ? _json['gcsUri'] as core.String
            : null,
        mimeType: _json.containsKey('mimeType')
            ? _json['mimeType'] as core.String
            : null,
      );