isTablet property

bool get isTablet

Check if screen width is in tablet range (>= mobileBreakpoint and < desktopBreakpoint).

Implementation

bool get isTablet =>
    screenWidth >= _config.mobileBreakpoint &&
    screenWidth < _config.desktopBreakpoint;