greaterThanOrEqualTo function

Matcher greaterThanOrEqualTo(
  1. 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',
);