shuffle property
bool
get
shuffle
Implementation
bool get shuffle => _shuffle.valueOrNull ?? false;
set
shuffle
(bool value)
assign the shuffling state : true -> shuffling, false -> not shuffling
Implementation
set shuffle(bool value) {
_shuffle.add(value);
}