bottomIsGreaterThan function

RelationAssert bottomIsGreaterThan(
  1. double value
)

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

Implementation

RelationAssert bottomIsGreaterThan(double value) =>
    _bottomIs(PropertyRelation.greaterThan, value);