isTablet property
bool
get
isTablet
Determines if the current device is a tablet Based on screen width being between mobile and tablet breakpoint thresholds
Implementation
bool get isTablet =>
screenWidth >= _getMobileBreakpoint() &&
screenWidth < _getTabletBreakpoint();