isSmallDesktop property

bool get isSmallDesktop

Returns true if the width is greater than 1080 and less than or equal to 1280 pixels.

Implementation

bool get isSmallDesktop => width > 1080 && width <= 1280;