handleFilterFactorChangeEnd method

void handleFilterFactorChangeEnd(
  1. double newFactor
)

Handles the filter factor change end event.

This method calls the onFilterFactorChangeEnd callback with the provided newFactor and then calls handleUpdateUI.

Implementation

void handleFilterFactorChangeEnd(double newFactor) {
  onFilterFactorChangeEnd?.call(newFactor);
  handleUpdateUI();
}