isAndroid top-level property
bool
get
isAndroid
Whether the current operating system is a version of Android.
Identified by operatingSystem being the string android
.
The value is false
if the code is running inside a browser,
even if that browser is running on Android (see isBrowser).
Implementation
@pragma('vm:prefer-inline')
bool get isAndroid => OperatingSystem.current.isAndroid;