shuffle method
Refer to List.shuffle.
Additionally returns the list.
Implementation
Future<List<E>> shuffle([Random? random]) async {
return (await this)..shuffle(random);
}
Refer to List.shuffle.
Additionally returns the list.
Future<List<E>> shuffle([Random? random]) async {
return (await this)..shuffle(random);
}