toPitchNotation method

List<String> toPitchNotation()

Implementation

List<String> toPitchNotation() =>
    notes.map((e) => "${e.sign}${e.octave}").toList();