uint16 property

Generator<int> uint16

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

Implementation

Generator<core.int> get uint16 => intInRange(0, 2 << 16);