repeat property

int repeat

How often the alarm can be repeated, defaults to 0, ie no additional repeats after the first alaram.

Implementation

int get repeat =>
    getProperty<IntegerProperty>(IntegerProperty.propertyNameRepeat)
        ?.intValue ??
    0;
void repeat=(int? value)

Sets the number of repeats

Implementation

set repeat(int? value) => setOrRemoveProperty(
    IntegerProperty.propertyNameRepeat,
    IntegerProperty.create(IntegerProperty.propertyNameRepeat, value));