ScheduleItem class

Represents an item on a schedule.

Each instance holds information about the privacy setting, status, subject, location, start time, and end time of the item.

Constructors

ScheduleItem({bool? isPrivate, String? status, String? subject, String? location, Time? start, Time? end})
Creates a new instance of ScheduleItem.
ScheduleItem.fromJson(Map<String, dynamic> json)
Creates a new instance of ScheduleItem from a JSON object.
factory

Properties

end Time?
The end time of the item as a Time object.
final
hashCode int
The hash code for this object.
no setterinherited
isPrivate bool?
Indicates whether the item is private.
final
location String?
The location of the item.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
start Time?
The start time of the item as a Time object.
final
status String?
The status of the item.
final
subject String?
The subject of the item.
final

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