resetDevicePixelRatio method

void resetDevicePixelRatio(
  1. bool notify
)

Reset configuration to real device pixel ratio.

Implementation

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