EntityAnnotation constructor Null safety

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 this.description,
  this.score,
  this.topicality,
  this.boundingPoly,
  this.locationInfo,
  this.properties,
});