getPlatformType static method
Implementation
static PlatformType getPlatformType() {
if (isWeb()) {
return PlatformType.Web;
}
if (isAndroid()) {
return PlatformType.Android;
}
if (isIos()) {
return PlatformType.iOS;
}
if (isLinux()) {
return PlatformType.Linux;
}
if (isMac()) {
return PlatformType.Mac;
}
if (isWindows()) {
return PlatformType.Windows;
}
return PlatformType.Unknown;
}