8 lines
178 B
Dart
8 lines
178 B
Dart
extension ReturnShuffle on List {
|
|
List<dynamic> shuffleReturn() {
|
|
// final List<dynamic> copyList = toList();
|
|
shuffle();
|
|
return this;
|
|
// return copyList;
|
|
}
|
|
}
|