greaterThanOrEqualTo function

Matcher greaterThanOrEqualTo (dynamic value)

Returns a matcher which matches if the match argument is greater than or equal to the given value.

Implementation

Matcher greaterThanOrEqualTo(value) => new _OrderingMatcher(
    value, true, false, true, 'a value greater than or equal to');