AnnotateTextResponse constructor

AnnotateTextResponse({
  1. List<ClassificationCategory>? categories,
  2. Sentiment? documentSentiment,
  3. List<Entity>? entities,
  4. String? language,
  5. List<ClassificationCategory>? moderationCategories,
  6. List<Sentence>? sentences,
  7. List<Token>? tokens,
})

Implementation

AnnotateTextResponse({
  this.categories,
  this.documentSentiment,
  this.entities,
  this.language,
  this.moderationCategories,
  this.sentences,
  this.tokens,
});