commandWhere property

String get commandWhere

Implementation

static String get commandWhere {
  if (Platform.isWindows) {
    return 'where';
  } else {
    return 'which';
  }
}