heightIsGreaterThanEqual function

RelationAssert heightIsGreaterThanEqual(
  1. double value
)

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

Implementation

RelationAssert heightIsGreaterThanEqual(double value) =>
    _heightIs(PropertyRelation.greaterThanEqual, value);