GoogleCloudDocumentaiV1DocumentPageVisualElement.fromJson constructor

GoogleCloudDocumentaiV1DocumentPageVisualElement.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1DocumentPageVisualElement.fromJson(core.Map json_)
    : this(
        detectedLanguages: (json_['detectedLanguages'] as core.List?)
            ?.map((value) =>
                GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.fromJson(
                    value as core.Map<core.String, core.dynamic>))
            .toList(),
        layout: json_.containsKey('layout')
            ? GoogleCloudDocumentaiV1DocumentPageLayout.fromJson(
                json_['layout'] as core.Map<core.String, core.dynamic>)
            : null,
        type: json_['type'] as core.String?,
      );