DayPart constructor

DayPart({
  1. String? dayOfWeek,
  2. TimeOfDay? endTime,
  3. TimeOfDay? startTime,
})

Implementation

DayPart({
  this.dayOfWeek,
  this.endTime,
  this.startTime,
});