LoadRandomSequence method
Implementation
List<int> LoadRandomSequence(
int count,
int min,
int max,
[int? seed]
) => run(
() => 'LoadRandomSequence($count, $min, $max, seed: $seed)',
() {
final random = Random(seed);
return .generate(count, (_) => min + random.nextInt(max - min + 1));
},
);