bool property

Generator<bool> bool

A generator that returns either true or false.

false is considered less complex than true.

Implementation

Generator<core.bool> get bool => choose([false, true]);