KinHeatmap constructor

const KinHeatmap({
  1. Key? key,
  2. required List<List<KinHeatmapCell>> data,
  3. List<String>? columnLabels,
  4. List<String>? rowLabels,
  5. double cellSize = 14,
  6. double cellGap = 3,
  7. double cellRadius = 3,
  8. KinHeatmapColorScale? colorScale,
  9. void onCellTap(
    1. int row,
    2. int col,
    3. KinHeatmapCell cell
    )?,
})

Implementation

const KinHeatmap({
  super.key,
  required this.data,
  this.columnLabels,
  this.rowLabels,
  this.cellSize = 14,
  this.cellGap = 3,
  this.cellRadius = 3,
  this.colorScale,
  this.onCellTap,
});