Distribution constructor

Distribution({
  1. List<String>? bucketCounts,
  2. BucketOptions? bucketOptions,
  3. String? count,
  4. List<Exemplar>? exemplars,
  5. double? mean,
  6. Range? range,
  7. double? sumOfSquaredDeviation,
})

Implementation

Distribution({
  this.bucketCounts,
  this.bucketOptions,
  this.count,
  this.exemplars,
  this.mean,
  this.range,
  this.sumOfSquaredDeviation,
});