WorkingHours class
Represents the working hours of an individual.
This is typically used to determine availability for scheduling meetings.
Constructors
-
WorkingHours({List<
String> ? daysOfWeek, String? startTime, String? endTime, TimeZone? timeZone}) - Creates a new instance of WorkingHours.
-
WorkingHours.fromJson(Map<
String, dynamic> json) -
Creates a new instance of WorkingHours from a JSON object.
factory
Properties
-
daysOfWeek
↔ List<
String> ? -
A list of the days of the week on which the individual works.
getter/setter pair
- endTime ↔ String?
-
The end time of the individual's working day.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- startTime ↔ String?
-
The start time of the individual's working day.
getter/setter pair
- timeZone ↔ TimeZone?
-
The time zone in which the individual's working hours are specified.
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited