On this page
checkValueInInterval method
void checkValueInInterval(Check that a value
lies in a specific interval.
Throws if value
is not in the interval. The interval is from minValue
to maxValue
, both inclusive.
Source
static void checkValueInInterval(int value, int minValue, int maxValue,
[String name, String message]) {
if (value < minValue || value > maxValue) {
throw new RangeError.range(value, minValue, maxValue, name, message);
}
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-core/RangeError/checkValueInInterval.html