RangeError.value constructor - RangeError - dart:core library (original) (raw)
RangeError.value(
Create a new RangeError with a message for the given value
.
An optional name
can specify the argument name that has the invalid value, and the message
can override the default error description.
Implementation
RangeError.value(num value, [String? name, String? message])
: start = null,
end = null,
super.value(value, name, message ?? "Value not in range");