chordToString function
Convert a chord to its canonical string representation.
Implementation
String chordToString(List<ParsedKeystroke> chord) {
return chord.map(keystrokeToString).join(' ');
}
Convert a chord to its canonical string representation.
String chordToString(List<ParsedKeystroke> chord) {
return chord.map(keystrokeToString).join(' ');
}