shuffleEnabled property

bool shuffleEnabled

Current shuffleEnabled mode of Player

Implementation

bool get shuffleEnabled {
  return LWM.bindings.PlayerIsShuffleEnabled(
    id,
  );
}
void shuffleEnabled=(bool shuffling)

Sets shuffleEnabled of the Player

Implementation

set shuffleEnabled(bool shuffling) {
  LWM.bindings.PlayerSetIsShuffling(
    id,
    shuffling,
  );
}