判断当前设备是否为平板
返回值: bool,为平板时为 true
示例:
if (DeviceUtil.isTablet()) { print("当前为平板"); }
static bool isTablet() { return Get.context!.isTablet; }