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