isLessThan method

bool isLessThan(
  1. double value
)

Returns true if the container width is strictly less than value.

Implementation

bool isLessThan(double value) => width < value;