Same as range but returns a List type.
List<int> rangeList(int a, [int? b, int? step]) { return range(a, b, step).toList(); }