rndSeed top-level property

int rndSeed

Gets the seed of the rnd global Random instance.

Implementation

int get rndSeed => _seed;
void rndSeed=(int seed)

Sets the seed of the rnd global Random instance.

Implementation

set rndSeed(int seed) => rnd = Random(_seed = seed);