resetViewInsets method

void resetViewInsets(
  1. bool notify
)

Reset configuration to real device view insets.

Implementation

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