Returns true if the screen width is greater than or equal to the given value.
true
Example:
if (context.isLargeScreen(1200)) { ... }
bool isLargeScreen(double width) => screenWidth >= width;