HistogramBucket constructor

const HistogramBucket({
  1. required int count,
  2. double? upperBound,
})

Creates a bucket with an inclusive upperBound and a sample count.

Implementation

const HistogramBucket({required this.count, this.upperBound});