PlannerTime constructor

PlannerTime({
  1. int day = 0,
  2. int? endDay,
  3. int hour = 0,
  4. int minutes = 0,
  5. int duration = 60,
  6. bool allDay = false,
})

Implementation

PlannerTime(
    {this.day = 0,
    this.endDay,
    this.hour = 0,
    this.minutes = 0,
    this.duration = 60,
    this.allDay = false});