toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (buckets != null) 'buckets': buckets!,
if (max != null) 'max': max!,
if (mean != null) 'mean': mean!,
if (median != null) 'median': median!,
if (min != null) 'min': min!,
if (p5 != null) 'p5': p5!,
if (p95 != null) 'p95': p95!,
if (sum != null) 'sum': sum!,
};