mtid property

String mtid

Implementation

String get mtid => _getAttribute<String>(kMtid, '');
void mtid=(String? x)

An alias for rehearsal_mix_id

pass null to remove key from attributes

Implementation

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