menu
toolkit package
documentation
random_utils.dart
RandomUtils
numeric method
numeric method
dark_mode
light_mode
numeric
method
int
numeric
(
int
max
)
Generate random int.
Implementation
int numeric(int max) { Random _rnd = Random(); return _rnd.nextInt(max); }
toolkit package
documentation
random_utils
RandomUtils
numeric method
RandomUtils class