rehearsalMixId property

String rehearsalMixId

Implementation

String get rehearsalMixId => _getAttribute<String>(kRehearsalMixId, '');
void rehearsalMixId=(String? x)

pass null to remove key from attributes

Implementation

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