seek method

Future<void> seek(
  1. double time
)

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;
  }
}