OpeningHours constructor

const OpeningHours({
  1. required List<Period> periods,
  2. required List<String> weekdayText,
})

constructs an OpeningHours object.

Implementation

const factory OpeningHours({
  /// A list of Period objects that provide more detailed information that is equivalent to the data provided by getWeekdayText().
  required List<Period> periods,

  /// Returns a list of strings that represent opening and closing hours in human readable form.
  required List<String> weekdayText,
}) = _OpeningHours;