showVideoView method

void showVideoView(
  1. bool show
)

Implementation

void showVideoView(bool show) {
  if (mounted) {
    _showVideoView = show;
    setState(() {});
  }
}