isTablet method

bool isTablet()

Implementation

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