CalendarParsedResult class

Represents a parsed result that encodes a calendar event at a certain time, optionally with attendees and a location.

@author Sean Owen

Inheritance

Constructors

CalendarParsedResult(String? summary, String? startString, String? endString, String? durationString, String? location, String? organizer, List<String>? _attendees, String? description, double? latitude, double? longitude)

Properties

attendees List<String>?
no setter
description String?
getter/setter pair
displayResult String
no setteroverride
end DateTime?
@return event end Date, or null if event has no duration @deprecated use {@link #getEndTimestamp()}
no setter
endTimestamp int
@return event end Date, or -1 if event has no duration @see #getStartTimestamp()
no setter
hashCode int
The hash code for this object.
no setterinherited
isEndAllDay bool
@return true if end time was specified as a whole day
no setter
isStartAllDay bool
@return true if start time was specified as a whole day
no setter
latitude double?
getter/setter pair
location String?
getter/setter pair
longitude double?
getter/setter pair
organizer String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
start DateTime
@return start time @deprecated use {@link #getStartTimestamp()}
no setter
startTimestamp int
@return start time @see #getEndTimestamp()
no setter
summary String?
getter/setter pair
type ParsedResultType
no setterinherited

Methods

maybeAppend(String? value, StringBuffer result) → void
inherited
maybeAppendList(List<String>? values, StringBuffer result) → void
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setDuration(DateTime start, DateTime end, {bool startAllDay = false, bool endAllDay = false}) → void
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited