Distribution constructor
Distribution({
- int count = 0,
- double mean = 0,
- double sumOfSquaredDeviation = 0,
- Distribution_Range? range,
- Distribution_BucketOptions? bucketOptions,
- List<
int> bucketCounts = const [], - 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);