TimeRuler constructor

const TimeRuler({
  1. Key? key,
  2. int startHour = 0,
  3. int endHour = 24,
  4. double hourHeight = 60.0,
  5. double width = 56.0,
  6. bool showCurrentTime = true,
  7. Color? lineColor,
})

Implementation

const TimeRuler({
  super.key,
  this.startHour = 0,
  this.endHour = 24,
  this.hourHeight = 60.0,
  this.width = 56.0,
  this.showCurrentTime = true,
  this.lineColor,
});