which method

Future<String?> which(
  1. String command
)

Find a command path location in the environment

Implementation

Future<String?> which(String command) async {
  return whichSync(command);
}