uint32 property

Generator<int> uint32

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

Implementation

Generator<core.int> get uint32 => intInRange(0, 2 << 32);