actionText property

String? actionText

Retrieve the alarm action as a text.

Compare action for easier retrieval in case of a standardized action.

Implementation

String? get actionText =>
    getProperty<ActionProperty>(ActionProperty.propertyName)?.textValue;
void actionText=(String? value)

Sets the action

Implementation

set actionText(String? value) => setOrRemoveProperty(
    ActionProperty.propertyName, ActionProperty.createWithActionText(value));