start property

DateTime? start

The start time (inclusive) of this event.

is REQUIRED if the component appears in an iCalendar object that doesn't specify the "METHOD" property; otherwise, it is OPTIONAL; in any case, it MUST NOT occur more than once.

Implementation

DateTime? get start =>
    getProperty<DateTimeProperty>(DateTimeProperty.propertyNameStart)
        ?.dateTime;
void start=(DateTime? value)

Sets the start date (inclusive)

Implementation

set start(DateTime? value) => setOrRemoveProperty(
    DateTimeProperty.propertyNameStart,
    DateTimeProperty.create(DateTimeProperty.propertyNameStart, value));