UptimeTrackerProps constructor

const UptimeTrackerProps({
  1. required List<UptimeDay> days,
  2. int barHeight = 32,
  3. int barWidth = 4,
  4. int gap = 2,
  5. bool showDates = false,
  6. bool showPercentage = true,
})

Implementation

const UptimeTrackerProps({
  required this.days,
  this.barHeight = 32,
  this.barWidth = 4,
  this.gap = 2,
  this.showDates = false,
  this.showPercentage = true,
});