GoogleCloudDocumentaiV1beta3DocumentPageAnchor.fromJson constructor

GoogleCloudDocumentaiV1beta3DocumentPageAnchor.fromJson(
  1. Map _json
)

Implementation

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