toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (boundingPoly != null) 'boundingPoly': boundingPoly!,
      if (confidence != null) 'confidence': confidence!,
      if (description != null) 'description': description!,
      if (locale != null) 'locale': locale!,
      if (locations != null) 'locations': locations!,
      if (mid != null) 'mid': mid!,
      if (properties != null) 'properties': properties!,
      if (score != null) 'score': score!,
      if (topicality != null) 'topicality': topicality!,
    };