setPlaybackSpeed method
Sets the native player playback speed (e.g. 1.0, 1.5, 2.0).
Implementation
Future<void> setPlaybackSpeed(double speed) async {
final id = _textureId;
if (id == null || _isDisposed) return;
await VideoViewPlayerPlatform.instance.setPlaybackSpeed(id, speed);
}