isRehearsalTeam property

bool isRehearsalTeam

Implementation

bool get isRehearsalTeam => _getAttribute<bool>(kRehearsalTeam, false);
void isRehearsalTeam=(bool? x)

pass null to remove key from attributes

Implementation

set isRehearsalTeam(bool? x) => (x == null)
    ? _attributes.remove(kRehearsalTeam)
    : _attributes[kRehearsalTeam] = x;