resetSystemGestureInsets method

void resetSystemGestureInsets(
  1. bool notify
)

Reset configuration to real device system gesture insets.

Implementation

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