TrackerProps constructor

const TrackerProps({
  1. required List<TrackerData> data,
  2. int columns = 12,
  3. int cellSize = 12,
  4. int gap = 3,
  5. bool showTooltips = true,
  6. bool showLegend = false,
  7. Map<TrackerLevel, String>? levelColors,
  8. void onCellTap(
    1. int index,
    2. TrackerData data
    )?,
})

Implementation

const TrackerProps({
  required this.data,
  this.columns = 12,
  this.cellSize = 12,
  this.gap = 3,
  this.showTooltips = true,
  this.showLegend = false,
  this.levelColors,
  this.onCellTap,
});