ints method

Iterable<int> ints(
  1. int count, {
  2. int max = 1 << 32,
})

Implementation

Iterable<int> ints(int count, {int max = 1 << 32}) =>
    Iterable.generate(count, (_) => nextInt(max));