stepBy method
Creates an iterator starting at the same point, but stepping by the given amount at each iteration.
Implementation
@override
@pragma("vm:prefer-inline")
Iter<T> stepBy(int step) {
assert(step > 0, 'Step must be greater than 0');
return Iter.fromIterable(_stepByHelper(step));
}