resetSize method

void resetSize(
  1. bool notify
)

Reset configuration to real device size.

Implementation

void resetSize(bool notify) {
  _size = null;
  if (notify) {
    _platformDispatcher.onMetricsChanged?.call();
  }
}