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