closeFullScreen method

Future<bool> closeFullScreen()

Closes the full screen player

Implementation

Future<bool> closeFullScreen() async {
	Navigator.of(context).pop(controller.value);
	return false;
}