shuffle method

  1. @Deprecated('Use [spotify.player.shuffle()]')
Future<PlaybackState?> shuffle(
  1. bool state, [
  2. String? deviceId
])

Toggle Shuffle For User's Playback.

Use state to toggle the shuffle. true to turn shuffle on and false to turn it off respectively. Returns the current player state by making another request. See player;

Implementation

@Deprecated('Use [spotify.player.shuffle()]')
Future<PlaybackState?> shuffle(bool state, [String? deviceId]) async =>
    _player.shuffle(state, deviceId: deviceId);