BigHistogramBucket constructor

const BigHistogramBucket({
  1. required int count,
  2. BigInt? upperBound,
})

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

Implementation

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