isTablet property
bool
get
isTablet
Is tablet (600dp <= width < 900dp)
Implementation
bool get isTablet => _screenWidth >= 600 && _screenWidth < 900;
Is tablet (600dp <= width < 900dp)
bool get isTablet => _screenWidth >= 600 && _screenWidth < 900;