isMacOS top-level property

bool get isMacOS

Whether the current operating system is a version of macOS.

Identified by operatingSystem being the string macos.

The value is false if the code is running inside a browser, even if that browser is running on MacOS (see isBrowser).

Implementation

@pragma('vm:prefer-inline')
bool get isMacOS => OperatingSystem.current.isMacOS;