recurrenceRule property

Recurrence? recurrenceRule
inherited

Retrieves the recurrence rule of this event

Compare additionalRecurrenceDates, excludingRecurrenceDates

Implementation

Recurrence? get recurrenceRule =>
    getProperty<RecurrenceRuleProperty>(RecurrenceRuleProperty.propertyName)
        ?.rule;
void recurrenceRule=(Recurrence? value)
inherited

Sets the reccurenceRule

Implementation

set recurrenceRule(Recurrence? value) => setOrRemoveProperty(
    RecurrenceRuleProperty.propertyName,
    RecurrenceRuleProperty.create(value));