end property

DateTime? end

The end date (exclusive) of this event.

either DTEND or DURATION may occur, but not both Compare duration

Implementation

DateTime? get end =>
    getProperty<DateTimeProperty>(DateTimeProperty.propertyNameEnd)?.dateTime;
void end=(DateTime? value)

Sets the end date (exclusive)

Implementation

set end(DateTime? value) => setOrRemoveProperty(
    DateTimeProperty.propertyNameEnd,
    DateTimeProperty.create(DateTimeProperty.propertyNameEnd, value));