whichSync method

String? whichSync(
  1. String command
)

Find a command path location in the environment

Implementation

String? whichSync(String command) {
  return findExecutableSync(
    command,
    paths,
  );
}