isTablet method
Implementation
bool isTablet() {
final shortestSide = MediaQuery.of(this).size.shortestSide;
return shortestSide >= 550;
}
bool isTablet() {
final shortestSide = MediaQuery.of(this).size.shortestSide;
return shortestSide >= 550;
}