判断屏幕方向是否为竖屏
返回值: bool,竖屏为 true
示例:
if (DeviceUtil.isPortrait()) { print("竖屏模式"); }
static bool isPortrait() { return Get.context!.isPortrait; }