GoogleCloudVideointelligenceV1TextDetectionConfig.fromJson constructor

GoogleCloudVideointelligenceV1TextDetectionConfig.fromJson(
  1. Map json_
)

Implementation

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