calendarName property

String? calendarName

Retrieves the calendar name like US Holidays of this calendar if it has been set.

Implementation

String? get calendarName =>
    getProperty<TextProperty>(TextProperty.propertyNameXCalendarName)
        ?.textValue;
void calendarName=(String? value)

Sets the X-WR-CALNAME property

Implementation

set calendarName(String? value) => setOrRemoveProperty(
    TextProperty.propertyNameXCalendarName,
    TextProperty.create(TextProperty.propertyNameXCalendarName, value));