isFuchsia top-level property

bool get isFuchsia

Whether the current operating system is a version of Fuchsia.

Identified by operatingSystem being the string fuchsia.

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

Implementation

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