isSmallTablet property

bool get isSmallTablet

Returns true if the width is greater than 480 and less than or equal to 720 pixels.

Implementation

bool get isSmallTablet => width > 480 && width <= 720;