GoogleCloudDocumentaiV1OcrConfigPremiumFeatures.fromJson constructor

GoogleCloudDocumentaiV1OcrConfigPremiumFeatures.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1OcrConfigPremiumFeatures.fromJson(core.Map json_)
    : this(
        computeStyleInfo: json_.containsKey('computeStyleInfo')
            ? json_['computeStyleInfo'] as core.bool
            : null,
        enableMathOcr: json_.containsKey('enableMathOcr')
            ? json_['enableMathOcr'] as core.bool
            : null,
        enableSelectionMarkDetection:
            json_.containsKey('enableSelectionMarkDetection')
                ? json_['enableSelectionMarkDetection'] as core.bool
                : null,
      );