GoogleCloudDocumentaiV1DocumentPageAnchor.fromJson constructor

GoogleCloudDocumentaiV1DocumentPageAnchor.fromJson(
  1. Map json_
)

Implementation

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