calendarScale property

String calendarScale

Retrieves the scale of the calendar, typically GREGORIAN

Compare isGregorian

Implementation

String get calendarScale =>
    getProperty<CalendarScaleProperty>(CalendarScaleProperty.propertyName)
        ?.textValue ??
    'GREGORIAN';
void calendarScale=(String? value)

Sets the scale of the calendar

Implementation

set calendarScale(String? value) => setOrRemoveProperty(
    CalendarScaleProperty.propertyName, CalendarScaleProperty.create(value));