pause method

Future<void> pause()

Implementation

Future<void> pause() async {
  if (_channel == null || _isDisposed) return;
  try {
    await _channel!.invokeMethod('pause');
  } catch (e) {
    debugPrint('InlineVideoPlayerController.pause error: $e');
  }
}