isLinux property

bool isLinux

Implementation

static bool get isLinux {
  if (kIsWeb) {
    return false;
  }
  return Platform.isLinux;
}