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