OpeningHours constructor

OpeningHours({
  1. List<Period>? periods,
  2. List<String>? weekdayDescriptions,
  3. SecondaryHoursType? secondaryHoursType,
  4. List<SpecialDay>? specialDays,
  5. DateTime? nextOpenTime,
  6. DateTime? nextCloseTime,
  7. bool? openNow,
})

Implementation

OpeningHours({
  this.periods,
  this.weekdayDescriptions,
  this.secondaryHoursType,
  this.specialDays,
  this.nextOpenTime,
  this.nextCloseTime,
  this.openNow,
});