BusinessOpeningHoursInterval constructor
const
BusinessOpeningHoursInterval({})
Creates a BusinessOpeningHoursInterval object.
Implementation
const factory BusinessOpeningHoursInterval({
/// The minute's sequence number in a week, starting on Monday, marking the start
/// of the time interval during which the business is open; 0 - 7 24 60
@JsonKey(name: 'opening_minute') required int openingMinute,
/// The minute's sequence number in a week, starting on Monday, marking the end
/// of the time interval during which the business is open; 0 - 8 24 60
@JsonKey(name: 'closing_minute') required int closingMinute,
}) = _BusinessOpeningHoursInterval;