MPWeeklyOpeningHours class
Represents the opening hours for a week, with each day having its own set of opening hours. This class is used to define the opening hours for a business or location, detailing the hours for each day of the week. Each day is represented by an instance of MPDailyOpeningHours, which contains the specific opening and closing times for that day.
- Inheritance
-
- Object
- MapsIndoorsObject
- MPWeeklyOpeningHours
Constructors
- MPWeeklyOpeningHours({MPDailyOpeningHours? monday, MPDailyOpeningHours? tuesday, MPDailyOpeningHours? wednesday, MPDailyOpeningHours? thursday, MPDailyOpeningHours? friday, MPDailyOpeningHours? saturday, MPDailyOpeningHours? sunday})
Properties
- friday → MPDailyOpeningHours?
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- monday → MPDailyOpeningHours?
-
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- saturday → MPDailyOpeningHours?
-
final
- sunday → MPDailyOpeningHours?
-
final
- thursday → MPDailyOpeningHours?
-
final
- tuesday → MPDailyOpeningHours?
-
final
- wednesday → MPDailyOpeningHours?
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
override
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromJson(
dynamic json) → MPWeeklyOpeningHours?