FakeRandom constructor
FakeRandom({})
Creates a FakeRandom with the Iterable
s used by the various function to produce values.
Implementation
FakeRandom({
Iterable<int> ints = const [],
Iterable<double> doubles = const [],
Iterable<bool> bools = const [],
}): _ints = ints.iterator, _doubles = doubles.iterator, _bools = bools.iterator;