NOTES top-level constant
Implementation
const Map<String, Note> NOTES = {
"a0": Note(Pitch.a0),
"b0": Note(Pitch.b0),
"c1": Note(Pitch.c1),
"d1": Note(Pitch.d1),
"e1": Note(Pitch.e1),
"f1": Note(Pitch.f1),
"g1": Note(Pitch.g1),
"a1": Note(Pitch.a1),
"b1": Note(Pitch.b1),
"c2": Note(Pitch.c2),
"d2": Note(Pitch.d2),
"e2": Note(Pitch.e2),
"f2": Note(Pitch.f2),
"g2": Note(Pitch.g2),
"a2": Note(Pitch.a2),
"b2": Note(Pitch.b2),
"c3": Note(Pitch.c3),
"d3": Note(Pitch.d3),
"e3": Note(Pitch.e3),
"f3": Note(Pitch.f3),
"g3": Note(Pitch.g3),
"a3": Note(Pitch.a3),
"b3": Note(Pitch.b3),
"c4": Note(Pitch.c4),
"d4": Note(Pitch.d4),
"e4": Note(Pitch.e4),
"f4": Note(Pitch.f4),
"g4": Note(Pitch.g4),
"a4": Note(Pitch.a4),
"b4": Note(Pitch.b4),
"c5": Note(Pitch.c5),
"d5": Note(Pitch.d5),
"e5": Note(Pitch.e5),
"f5": Note(Pitch.f5),
"g5": Note(Pitch.g5),
"a5": Note(Pitch.a5),
"b5": Note(Pitch.b5),
"c6": Note(Pitch.c6),
"d6": Note(Pitch.d6),
"e6": Note(Pitch.e6),
"f6": Note(Pitch.f6),
"g6": Note(Pitch.g6),
"a6": Note(Pitch.a6),
"b6": Note(Pitch.b6),
"c7": Note(Pitch.c7),
"d7": Note(Pitch.d7),
"e7": Note(Pitch.e7),
"f7": Note(Pitch.f7),
"g7": Note(Pitch.g7),
"a7": Note(Pitch.a7),
"b7": Note(Pitch.b7),
};