OpeningHours constructor

OpeningHours({
  1. bool? openNow,
  2. List<Period>? periods,
  3. List<String>? weekdayText,
})

Creates an OpeningHours instance.

Implementation

OpeningHours({
  this.openNow,
  this.periods,
  this.weekdayText,
});