Randomizer constructor

Randomizer({
  1. int seed = 0,
})

Implementation

Randomizer({int seed = 0}) {
  _seed = seed;
  _random = Random(seed);
}