rndBool function

bool rndBool(
  1. List args
)

Implementation

bool rndBool(List args) {
  _arityCheck(0, args.length);
  return _random.nextBool();
}