topIsGreaterThan function

RelationAssert topIsGreaterThan(
  1. double value
)

Returns a RelationAssert which checks whether top is greater than value.

Implementation

RelationAssert topIsGreaterThan(double value) =>
    _topIs(PropertyRelation.greaterThan, value);