File size: 90 Bytes
5acd9c3
 
 
 
 
1
2
3
4
5
6
import 'dart:math';

int generateSeed() {
  return Random().nextInt(pow(2, 31) as int);
}