teamReminders property

List teamReminders

Implementation

List get teamReminders => _getAttribute<List>(kTeamReminders, []);
void teamReminders=(List? x)

A Hash that maps a Team ID to a reminder value. If nothing is specified, no reminder is set for that team. A reminder value is an integer (0-7) equal to the number of days before the selected time a reminder should be sent.

pass null to remove key from attributes

Implementation

set teamReminders(List? x) => (x == null)
    ? _attributes.remove(kTeamReminders)
    : _attributes[kTeamReminders] = x;