aitube2 / lib /utils /seed.dart
jbilcke-hf's picture
jbilcke-hf HF Staff
initial commit log 🪵🦫
5acd9c3
raw
history blame contribute delete
90 Bytes
import 'dart:math';
int generateSeed() {
return Random().nextInt(pow(2, 31) as int);
}