GoogleCloudVideointelligenceV1TextDetectionConfig.fromJson constructor

GoogleCloudVideointelligenceV1TextDetectionConfig.fromJson(
  1. Map json_
)

Implementation

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