start property

DateTime? start

The start time (inclusive) of the free busy time.

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));