Distribution constructor

Distribution({
  1. List<String>? bucketCounts,
  2. String? count,
  3. List<Exemplar>? exemplars,
  4. ExplicitBuckets? explicitBuckets,
  5. ExponentialBuckets? exponentialBuckets,
  6. LinearBuckets? linearBuckets,
  7. double? maximum,
  8. double? mean,
  9. double? minimum,
  10. double? sumOfSquaredDeviation,
})

Implementation

Distribution({
  this.bucketCounts,
  this.count,
  this.exemplars,
  this.explicitBuckets,
  this.exponentialBuckets,
  this.linearBuckets,
  this.maximum,
  this.mean,
  this.minimum,
  this.sumOfSquaredDeviation,
});