toJson method

Map<String, dynamic> toJson()

Implementation

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