availableChordCharts static method

List<Chord> availableChordCharts(
  1. Instrument instrument
)

Implementation

static List<Chord> availableChordCharts(Instrument instrument) =>
    switch (instrument) {
      Instrument.banjo => List.unmodifiable(_banjoChordNotes.keys),
      Instrument.guitar => List.unmodifiable(_guitarChordNotes.keys),
    };