Returns true if the screen width is less than the given value.
true
Example:
if (context.isSmallScreen(600)) { ... }
bool isSmallScreen(double width) => screenWidth < width;