uint8 property

Generator<int> uint8

A generator that returns ints between 0, inclusive, to 256, exclusive.

Implementation

Generator<core.int> get uint8 => intInRange(0, 2 << 8);