isTablet static method

bool isTablet()

判断是否是平板尺寸(宽度大于等于600dp且小于1200dp)

Implementation

static bool isTablet() {
  final width = Get.width;
  return width >= 600 && width < 1200;
}