setPlaybackSpeed method

Future<Result> setPlaybackSpeed(
  1. double speed
)

speed range is from 1-8. 1 is regular speed.

Implementation

Future<Result> setPlaybackSpeed(double speed) async {
  return ResultMap[
          await _invokeMethod('setPlaybackSpeed', {'speed': speed}) as int] ??
      Result.ERROR;
}