generateRandoolBool static method

bool generateRandoolBool()

Implementation

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