EntityAnnotation constructor

EntityAnnotation({
  1. String? mid,
  2. String? locale,
  3. required String description,
  4. double? score,
  5. double? topicality,
  6. BoundingPoly? boundingPoly,
  7. List<LocationInfo>? locationInfo,
  8. List<Property>? properties,
})

Implementation

EntityAnnotation({
  this.mid,
  this.locale,
  required super.description,
  super.score,
  this.topicality,
  super.boundingPoly,
  this.locationInfo,
  this.properties,
});