SpecialHourPeriod constructor

SpecialHourPeriod({
  1. TimeOfDay? closeTime,
  2. bool? closed,
  3. Date? endDate,
  4. TimeOfDay? openTime,
  5. Date? startDate,
})

Implementation

SpecialHourPeriod({
  this.closeTime,
  this.closed,
  this.endDate,
  this.openTime,
  this.startDate,
});