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