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