AnalyzeEntitiesRequest.fromJson constructor

AnalyzeEntitiesRequest.fromJson(
  1. Map json_
)

Implementation

AnalyzeEntitiesRequest.fromJson(core.Map json_)
  : this(
      alternativeOutputFormat:
          json_['alternativeOutputFormat'] as core.String?,
      documentContent: json_['documentContent'] as core.String?,
      licensedVocabularies:
          (json_['licensedVocabularies'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );