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