resetGestureSettings method

void resetGestureSettings(
  1. bool notify
)

Reset configuration to real device gesture settings.

Implementation

void resetGestureSettings(bool notify) {
  _gestureSettings = null;
  if (notify) {
    platformDispatcher.onMetricsChanged?.call();
  }
}