SimpleHistogramBin constructor

const SimpleHistogramBin({
  1. required double start,
  2. required double end,
  3. required int count,
  4. String? label,
  5. Color? color,
})

Implementation

const SimpleHistogramBin({
  required this.start,
  required this.end,
  required this.count,
  this.label,
  this.color,
});