SimpleContinuousHeatmapPoint constructor

const SimpleContinuousHeatmapPoint({
  1. String? label,
  2. required double x,
  3. required double y,
  4. double weight = 1,
  5. String? group,
  6. Color? color,
})

Implementation

const SimpleContinuousHeatmapPoint({
  this.label,
  required this.x,
  required this.y,
  this.weight = 1,
  this.group,
  this.color,
});