iosInfo property
IosDeviceInfo
get
iosInfo
获取iOS设备信息
Implementation
static IosDeviceInfo get iosInfo {
if (Platform.isAndroid) {
return _deviceInfo as IosDeviceInfo;
} else {
throw Exception("当前设备不是iOS设备");
}
}