FakeRandom constructor

FakeRandom({
  1. Iterable<int> ints = const [],
  2. Iterable<double> doubles = const [],
  3. Iterable<bool> bools = const [],
})

Creates a FakeRandom with the Iterables 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;