boolean static method

bool boolean()

Generates a random boolean value.

Implementation

static bool boolean() {
  final rand = math.Random();
  return rand.nextBool();
}