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