GoogleCloudDocumentaiV1OcrConfigHints.fromJson constructor

GoogleCloudDocumentaiV1OcrConfigHints.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1OcrConfigHints.fromJson(core.Map json_)
    : this(
        languageHints: json_.containsKey('languageHints')
            ? (json_['languageHints'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );