BusinessWorkHours constructor

const BusinessWorkHours({
  1. required bool openNow,
  2. required String timezoneId,
  3. required List<BusinessWeeklyOpenBase> weeklyOpen,
})

Business Work Hours constructor.

Implementation

const BusinessWorkHours({
  required this.openNow,
  required this.timezoneId,
  required this.weeklyOpen,
}) : super._();