isRehearsalTeam property
bool
get
isRehearsalTeam
Implementation
bool get isRehearsalTeam => _getAttribute<bool>(kRehearsalTeam, false);
set
isRehearsalTeam
(bool? x)
pass null
to remove key from attributes
Implementation
set isRehearsalTeam(bool? x) => (x == null)
? _attributes.remove(kRehearsalTeam)
: _attributes[kRehearsalTeam] = x;