isDesktop static method
Implementation
static bool isDesktop() {
try {
return Platform.isMacOS || Platform.isLinux || Platform.isWindows;
} catch (e) {
return false;
}
}
static bool isDesktop() {
try {
return Platform.isMacOS || Platform.isLinux || Platform.isWindows;
} catch (e) {
return false;
}
}