bottomIsGreaterThanEqual function

RelationAssert bottomIsGreaterThanEqual(
  1. double value
)

Returns a RelationAssert which checks whether bottom is greater than or equal value.

Implementation

RelationAssert bottomIsGreaterThanEqual(double value) =>
    _bottomIs(PropertyRelation.greaterThanEqual, value);