customArrangementSequence property

List customArrangementSequence

Implementation

List get customArrangementSequence =>
    _getAttribute<List>(kCustomArrangementSequence, []);
void customArrangementSequence=(List? x)

An array of strings containing a label and a number describing the section:

'Verse 1', 'Chorus 1', 'Verse 2'

pass null to remove key from attributes

Implementation

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