chordChartChordColor property

int chordChartChordColor

Implementation

int get chordChartChordColor => _getAttribute<int>(kChordChartChordColor, 0);
void chordChartChordColor=(int? x)

pass null to remove key from attributes

Implementation

set chordChartChordColor(int? x) => (x == null)
    ? _attributes.remove(kChordChartChordColor)
    : _attributes[kChordChartChordColor] = x;