handleBlurFactorChange method

void handleBlurFactorChange(
  1. double newFactor
)

Handles the blur factor change event.

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

Implementation

void handleBlurFactorChange(double newFactor) {
  onBlurFactorChange?.call(newFactor);
  handleUpdateUI();
}