greaterThanOrEqualTo function Null safety
- Object value
Returns a matcher which matches if the match argument is greater
than or equal to the given value
.
Implementation
Matcher greaterThanOrEqualTo(Object value) => _OrderingMatcher(
value, true, false, true, 'a value greater than or equal to');