toJson method

Map<String, dynamic> toJson()

Implementation

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