isLinux property

bool isLinux

True if you are running on a Linux system.

Implementation

bool get isLinux => overriddenPlatform == null
    ? Platform.isLinux
    : overriddenPlatform == DCliPlatformOS.linux;