exitFullScreen method

void exitFullScreen()

Implementation

void exitFullScreen() {
  inFullScreen = false;
  SystemChrome.setPreferredOrientations(
    configuration.fullscreenExitAppState.orientations,
  );
  SystemChrome.setEnabledSystemUIMode(
    configuration.fullscreenExitAppState.mode,
  );
  autoHideControls();
  notifyListeners();
}