WeekTimeline constructor

const WeekTimeline({
  1. Key? key,
  2. int startHour = 0,
  3. int endHour = 24,
  4. double hourHeight = 60.0,
  5. double timeColumnWidth = 56.0,
})

Implementation

const WeekTimeline({
  super.key,
  this.startHour = 0,
  this.endHour = 24,
  this.hourHeight = 60.0,
  this.timeColumnWidth = 56.0,
});