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