toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final placeAnswerSources = this.placeAnswerSources;
  final placeId = this.placeId;
  final text = this.text;
  final title = this.title;
  final uri = this.uri;
  return {
    'placeAnswerSources': ?placeAnswerSources,
    'placeId': ?placeId,
    'text': ?text,
    'title': ?title,
    'uri': ?uri,
  };
}