setShuffle method

Future<void> setShuffle(
  1. bool shuffle
)

Enables or disables shuffle for Player. Default is false.

Implementation

Future<void> setShuffle(bool shuffle) async {
  return platform?.setShuffle(shuffle);
}