Schedule constructor

Schedule({
  1. Constraints? constraints,
  2. Interval? editWindow,
  3. String? lastEditor,
  4. String? startTime,
  5. List<TimeWindow>? weeklyWindows,
})

Implementation

Schedule({
  this.constraints,
  this.editWindow,
  this.lastEditor,
  this.startTime,
  this.weeklyWindows,
});