handleRotateStart method

void handleRotateStart(
  1. double value
)

Handles the rotate start event.

This method calls the onRotateStart callback with the provided value and then calls handleUpdateUI.

Implementation

void handleRotateStart(double value) {
  onRotateStart?.call(value);
  handleUpdateUI();
}