RangeNum<T extends num> extension

on
  • T

Methods

downTo(T downTo, {T? step}) List<T>
Returns a range from this value down to the specified to value with the step.
to(T to, {T? step}) List<T>
Returns a range from this value up to and including the specified to value.
until(T until, {T? step}) List<T>
Returns a range from this value up to but excluding the specified to value.