resetRefreshRate method

void resetRefreshRate(
  1. bool notify
)

Reset configuration to real device refresh rate.

Implementation

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