generateRandoolBool static method
Implementation
static bool generateRandoolBool() {
final n = prng.nextInt(2);
if (n == 0) return false;
return true;
}
static bool generateRandoolBool() {
final n = prng.nextInt(2);
if (n == 0) return false;
return true;
}