toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final count = this.count;
final filter = this.filter;
final percentage = this.percentage;
final value = this.value;
return {
'count': ?count,
'filter': ?filter,
'percentage': ?percentage,
'value': ?value,
};
}