GoogleCloudDocumentaiV1beta3GcsDocuments.fromJson constructor

GoogleCloudDocumentaiV1beta3GcsDocuments.fromJson(
  1. Map _json
)

Implementation

GoogleCloudDocumentaiV1beta3GcsDocuments.fromJson(core.Map _json)
    : this(
        documents: _json.containsKey('documents')
            ? (_json['documents'] as core.List)
                .map<GoogleCloudDocumentaiV1beta3GcsDocument>((value) =>
                    GoogleCloudDocumentaiV1beta3GcsDocument.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );