bottomIsLessThan function

RelationAssert bottomIsLessThan(
  1. double value
)

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

Implementation

RelationAssert bottomIsLessThan(double value) =>
    _bottomIs(PropertyRelation.lessThan, value);