CitationAnnotation constructor

CitationAnnotation({
  1. String? title,
  2. Uri? url,
  3. String? fileId,
  4. String? toolName,
  5. String? snippet,
  6. List<AnnotatedRegion>? annotatedRegions,
  7. Object? rawRepresentation,
  8. AdditionalPropertiesDictionary? additionalProperties,
})

Creates a new CitationAnnotation.

Implementation

CitationAnnotation({
  this.title,
  this.url,
  this.fileId,
  this.toolName,
  this.snippet,
  super.annotatedRegions,
  super.rawRepresentation,
  super.additionalProperties,
});