Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
tikslop
like
302
Running
on
CPU Upgrade
App
Files
Files
Community
14
Fetching metadata from the HF Docker repository...
e15d9f5
tikslop
/
lib
/
utils
/
seed.dart
jbilcke-hf
HF Staff
initial commit log 🪵🦫
5acd9c3
30 days ago
raw
Copy download link
history
blame
Safe
90 Bytes
import
'dart:math'
;
int
generateSeed() {
return
Random().nextInt(pow(
2
,
31
)
as
int
);
}