toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final boundingPoly = this.boundingPoly;
  final confidence = this.confidence;
  final description = this.description;
  final locale = this.locale;
  final locations = this.locations;
  final mid = this.mid;
  final properties = this.properties;
  final score = this.score;
  final topicality = this.topicality;
  return {
    'boundingPoly': ?boundingPoly,
    'confidence': ?confidence,
    'description': ?description,
    'locale': ?locale,
    'locations': ?locations,
    'mid': ?mid,
    'properties': ?properties,
    'score': ?score,
    'topicality': ?topicality,
  };
}