decreaseActiveValue method
Implementation
Future<void> decreaseActiveValue({double step = 1}) async {
switch (activeNumericTarget.value) {
case NeomNumericTarget.rootFrequency:
await decreaseFrequency(step: step);
break;
case NeomNumericTarget.binauralBeat:
setBinauralBeat(
beat: currentBeat.value - step,
);
break;
}
}