chordChart property

String chordChart

Implementation

String get chordChart => _getAttribute<String>(kChordChart, '');
void chordChart=(String? x)

A string of lyrics and chords. Supports standard and ChordPro formats.

pass null to remove key from attributes

Implementation

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