Generates a random boolean value.
Example:
var boolValue = Random().nextBool(); // true or false, with equal chance.
@override bool nextBool() => mt.genRandInt32() > 0x7FFFFFFF;