widthIsLessThan function

RelationAssert widthIsLessThan(
  1. double value
)

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

Implementation

RelationAssert widthIsLessThan(double value) =>
    _widthIs(PropertyRelation.lessThan, value);