isIOS top-level property

bool get isIOS

Whether the current operating system is a version of iOS.

Identified by operatingSystem being the string ios.

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

Implementation

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