Decreases the selected value by 1, down to min.
void decrement() { if (value > min) { value--; onChanged?.call(value); } }