repeatInterval property

String repeatInterval

Implementation

String get repeatInterval => _getAttribute<String>(kRepeatInterval, '');
void repeatInterval=(String? x)

Possible values:

  • exact_day_of_month

  • week_of_month_1

  • week_of_month_2

  • week_of_month_3

  • week_of_month_4

  • week_of_month_last

pass null to remove key from attributes

Implementation

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