boolean static method
Generates a random boolean value.
Implementation
static bool boolean() {
final rand = math.Random();
return rand.nextBool();
}
Generates a random boolean value.
static bool boolean() {
final rand = math.Random();
return rand.nextBool();
}