GoogleCloudDocumentaiV1ProcessOptionsLayoutConfigChunkingConfig.fromJson constructor

GoogleCloudDocumentaiV1ProcessOptionsLayoutConfigChunkingConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1ProcessOptionsLayoutConfigChunkingConfig.fromJson(
    core.Map json_)
    : this(
        chunkSize: json_.containsKey('chunkSize')
            ? json_['chunkSize'] as core.int
            : null,
        includeAncestorHeadings: json_.containsKey('includeAncestorHeadings')
            ? json_['includeAncestorHeadings'] as core.bool
            : null,
      );