spotube/lib/helpers/get-random-element.dart
Kingkor Roy Tirtho bbfb8f8522 Genius Lyrics works without access tokens
android background playback configuration added
2022-03-17 21:34:52 +06:00

7 lines
139 B
Dart

import 'dart:math';
final Random _random = Random();
T getRandomElement<T>(List<T> list) {
return list[_random.nextInt(list.length)];
}