PlaceOpeningHours constructor

const PlaceOpeningHours({
  1. bool? openNow,
  2. List<PlaceOpeningHoursPeriod>? periods,
  3. List<PlaceSpecialDay>? specialDays,
  4. String? type,
  5. List<String>? weekdayText,
})

Implementation

const PlaceOpeningHours({
  this.openNow,
  this.periods,
  this.specialDays,
  this.type,
  this.weekdayText,
});