chordToString function

String chordToString(
  1. List<ParsedKeystroke> chord
)

Convert a chord to its canonical string representation.

Implementation

String chordToString(List<ParsedKeystroke> chord) {
  return chord.map(keystrokeToString).join(' ');
}