Distribution constructor
Distribution({
- List<
String> ? bucketCounts, - String? count,
- List<
Exemplar> ? exemplars, - ExplicitBuckets? explicitBuckets,
- ExponentialBuckets? exponentialBuckets,
- LinearBuckets? linearBuckets,
- double? maximum,
- double? mean,
- double? minimum,
- double? sumOfSquaredDeviation,
Implementation
Distribution({
this.bucketCounts,
this.count,
this.exemplars,
this.explicitBuckets,
this.exponentialBuckets,
this.linearBuckets,
this.maximum,
this.mean,
this.minimum,
this.sumOfSquaredDeviation,
});