exitFullScreen method

void exitFullScreen({
  1. bool lock = true,
})

Exits fullscreen mode.

If lock is true, auto rotate will be disabled.

Implementation

void exitFullScreen({bool lock = true}) {
  update(fullScreenOption: FullScreenOption(enabled: false, locked: lock));
  _onFullscreenChanged?.call(false);
}