downTo method Null safety
- double toInclusive
Returns a range from this value down to the specified toInclusive
value, inclusively.
Implementation
Range<double> downTo(double toInclusive) => Range.range(this, toInclusive);
Returns a range from this value down to the specified toInclusive
value, inclusively.
Range<double> downTo(double toInclusive) => Range.range(this, toInclusive);