resumeTheme method
void
resumeTheme()
Called when returning from float window to fullscreen, restores LiveKit theme.
Implementation
void resumeTheme() {
if (!_isPaused || _themeState == null) {
return;
}
_isPaused = false;
_safeSetThemeMode(_themeState!, _targetThemeType);
}