handleBlurFactorChangeEnd method

void handleBlurFactorChangeEnd(
  1. double finalFactor
)

Handles the blur factor change end event.

This method calls the onBlurFactorChangeEnd callback with the provided finalFactor and then calls handleUpdateUI.

Implementation

void handleBlurFactorChangeEnd(double finalFactor) {
  onBlurFactorChangeEnd?.call(finalFactor);
  handleUpdateUI();
}