OutputTextContent constructor

const OutputTextContent({
  1. required String text,
  2. List<Annotation>? annotations,
  3. List<LogProb>? logprobs,
})

Creates an OutputTextContent.

Implementation

const OutputTextContent({
  required this.text,
  this.annotations,
  this.logprobs,
});