MathRNG constructor

MathRNG({
  1. int? seed,
})

Implementation

MathRNG({int? seed}) : _rnd = seed != null ? Random(seed) : Random();