endingKey property

String endingKey

Implementation

String get endingKey => _getAttribute<String>(kEndingKey, '');
void endingKey=(String? x)

Possible Values:

Ab, A, A#, Bb, B, C, C#, Db, D, D#, Eb, E, F, F#, Gb, G, G#, Abm, Am, A#m, Bbm, Bm, Cm, C#m, Dbm, Dm, D#m, Ebm, Em, Fm, F#m, Gbm, Gm, G#m

To set the key to minor append m to the key. e.g. Cm

pass null to remove key from attributes

Implementation

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