isDesktop static method
Returns true if running on a desktop platform (Windows, macOS, or Linux).
Implementation
static bool isDesktop() {
return isWindows() || isMacOS() || isLinux();
}
Returns true if running on a desktop platform (Windows, macOS, or Linux).
static bool isDesktop() {
return isWindows() || isMacOS() || isLinux();
}