upTo method Null safety
- double toInclusive
Alias for rangeTo()
, creates a range from this value to the specified toInclusive
value, inclusively.
Implementation
Range<double> upTo(double toInclusive) => Range.range(this, toInclusive);
Alias for rangeTo()
, creates a range from this value to the specified toInclusive
value, inclusively.
Range<double> upTo(double toInclusive) => Range.range(this, toInclusive);