Future<void> setPlaybackSpeed(double speed) async { final id = _textureId; if (id == null || _isDisposed) return; await VideoViewPlayerPlatform.instance.setPlaybackSpeed(id, speed); }