GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter.fromJson constructor

GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageFooter.fromJson(
    core.Map json_)
    : this(
        pageSpan: json_.containsKey('pageSpan')
            ? GoogleCloudDocumentaiV1DocumentChunkedDocumentChunkChunkPageSpan
                .fromJson(
                    json_['pageSpan'] as core.Map<core.String, core.dynamic>)
            : null,
        text: json_.containsKey('text') ? json_['text'] as core.String : null,
      );