inExclusiveRange function Null safety
Returns a matcher which matches if the match argument is greater
than low
and less than high
.
Implementation
Matcher inExclusiveRange(num low, num high) =>
_InRange(low, high, false, false);
Returns a matcher which matches if the match argument is greater
than low
and less than high
.
Matcher inExclusiveRange(num low, num high) =>
_InRange(low, high, false, false);