resetPadding method

void resetPadding(
  1. bool notify
)

Reset configuration to real device padding.

Implementation

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