nextBoolean static method

bool nextBoolean()

Generates a random boolean value.

Returns a random boolean.

Implementation

static bool nextBoolean() {
  return _random.nextBool();
}