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