pauseTheme method

void pauseTheme()

Called when entering float window mode, temporarily restores the previous theme.

Implementation

void pauseTheme() {
  if (_isPaused || _themeState == null || _previousThemeType == null) {
    return;
  }
  _isPaused = true;
  _safeSetThemeMode(_themeState!, _previousThemeType!);
}