toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bucketCounts = this.bucketCounts;
final bucketOptions = this.bucketOptions;
final count = this.count;
final exemplars = this.exemplars;
final mean = this.mean;
final range = this.range;
final sumOfSquaredDeviation = this.sumOfSquaredDeviation;
return {
'bucketCounts': ?bucketCounts,
'bucketOptions': ?bucketOptions,
'count': ?count,
'exemplars': ?exemplars,
'mean': ?mean,
'range': ?range,
'sumOfSquaredDeviation': ?sumOfSquaredDeviation,
};
}