isLargeTablet property

bool get isLargeTablet

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

Implementation

bool get isLargeTablet => width > 720 && width <= 1080;