mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
7 lines
139 B
Dart
7 lines
139 B
Dart
import 'dart:math';
|
|
|
|
final Random _random = Random();
|
|
T getRandomElement<T>(List<T> list) {
|
|
return list[_random.nextInt(list.length)];
|
|
}
|