SimpleHeatmapCell constructor

const SimpleHeatmapCell({
  1. required String xLabel,
  2. required String yLabel,
  3. required double value,
  4. Color? color,
  5. String? label,
})

Implementation

const SimpleHeatmapCell({
  required this.xLabel,
  required this.yLabel,
  required this.value,
  this.color,
  this.label,
});