toJson method
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,
};
}