OpeningHours constructor

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

Implementation

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