step method
Moves the active track on the min
edge to the previous/next step.
Implementation
void step({required bool min, required bool extend}) {
if (_selection case final selection?) {
this.selection = selection.step(min: min, extend: extend);
}
}