isShuffle property
bool
get
isShuffle
Returns the shuffle state
Implementation
bool get isShuffle => _storage.read(_shuffleKey) ?? false;
set
isShuffle
(bool value)
Sets the shuffle state
Implementation
set isShuffle(bool value) => _storage.write(_shuffleKey, value);