exitFullScreen method

void exitFullScreen()

Disables full screen mode in player. This will trigger route change.

Implementation

void exitFullScreen() {
  _isFullScreen = false;
  _postControllerEvent(PipFlutterPlayerControllerEvent.hideFullscreen);
}