exitFullScreen method

void exitFullScreen(
  1. BuildContext context
)

Implementation

void exitFullScreen(BuildContext context) async {
  isFullScreen.value = false;
  Navigator.pop(context);
}