rand dart fix

This commit is contained in:
2026-01-15 17:36:22 -08:00
parent dbbdafd893
commit 91e7e39fe8
131 changed files with 976 additions and 1365 deletions
@@ -5,9 +5,6 @@ enum Step { DO, RE, MI, FA, SOL, LA, TI }
Step updateStep(String scale, String pitch) {
// print("Scale: $scale, Pitch: $pitch");
if (pitch == null) return Step.DO;
if (scale == null) return Step.DO;
final PossibleScales? _scale = ScaleInfo.parse(scale).scale;
switch (_scale) {