chordChartKey property

String chordChartKey

Implementation

String get chordChartKey => _getAttribute<String>(kChordChartKey, '');
void chordChartKey=(String? x)

pass null to remove key from attributes

Implementation

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