toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final suggestedQuery = this.suggestedQuery;
  final suggestedQueryHtml = this.suggestedQueryHtml;
  final suggestionType = this.suggestionType;
  return {
    'suggestedQuery': ?suggestedQuery,
    'suggestedQueryHtml': ?suggestedQueryHtml,
    'suggestionType': ?suggestionType,
  };
}