TimeWindow constructor

TimeWindow({
  1. String? dayOfWeek,
  2. String? duration,
  3. TimeOfDay? startTime,
})

Implementation

TimeWindow({
  this.dayOfWeek,
  this.duration,
  this.startTime,
});