isMacOS property
bool
get
isMacOS
Whether the operating system is a version of macOS.
Implementation
bool get isMacOS {
try {
return platform.isMacOS;
} catch (e) {
return false;
}
}
Whether the operating system is a version of macOS.
bool get isMacOS {
try {
return platform.isMacOS;
} catch (e) {
return false;
}
}