seek method
Busca a un tiempo especĂfico en el video
Implementation
Future<void> seek(double time) async {
try {
await _methodChannel.invokeMethod('seek', {'time': time});
} catch (e) {
debugPrint('[NativeVideoPlayer] Error al buscar: $e');
rethrow;
}
}