repeatFrequency property

String repeatFrequency

Implementation

String get repeatFrequency => _getAttribute<String>(kRepeatFrequency, '');
void repeatFrequency=(String? x)

Possible values:

  • no_repeat

  • every_1

  • every_2

  • every_3

  • every_4

  • every_5

  • every_6

  • every_7

  • every_8

pass null to remove key from attributes

Implementation

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