pause method

Future<void> pause()

Implementation

Future<void> pause() async {
  if (!_isChangingSource) {
    await _video?.pause();
  }
}