CurrentOpeningHours constructor

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

Creates a CurrentOpeningHours instance.

Implementation

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