isLinux property

bool get isLinux

Implementation

bool get isLinux {
  try {
    return Platform.isLinux;
  } catch (e) {
    return false;
  }
}