toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final counts = this.counts;
final maxValue = this.maxValue;
final minValue = this.minValue;
return {'counts': ?counts, 'maxValue': ?maxValue, 'minValue': ?minValue};
}