repeatUntil property

String repeatUntil

Implementation

String get repeatUntil => _getAttribute<String>(kRepeatUntil, '');
void repeatUntil=(String? x)

pass null to remove key from attributes

Implementation

set repeatUntil(String? x) => (x == null)
    ? _attributes.remove(kRepeatUntil)
    : _attributes[kRepeatUntil] = x;