repeatPeriod property

String repeatPeriod

Implementation

String get repeatPeriod => _getAttribute<String>(kRepeatPeriod, '');
void repeatPeriod=(String? x)

Possible values:

  • daily

  • weekly

  • monthly

  • yearly

pass null to remove key from attributes

Implementation

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