Distribution constructor

Distribution({
  1. int count = 0,
  2. double mean = 0,
  3. double sumOfSquaredDeviation = 0,
  4. Distribution_Range? range,
  5. Distribution_BucketOptions? bucketOptions,
  6. List<int> bucketCounts = const [],
  7. List<Distribution_Exemplar> exemplars = const [],
})

Implementation

Distribution({
  this.count = 0,
  this.mean = 0,
  this.sumOfSquaredDeviation = 0,
  this.range,
  this.bucketOptions,
  this.bucketCounts = const [],
  this.exemplars = const [],
}) : super(fullyQualifiedName);