HistogramEntry constructor

HistogramEntry({
  1. int? count,
  2. double? value,
})

Implementation

HistogramEntry({
  this.count,
  this.value,
});