resolveBinaryPath method
Resolves the binary path for a given command. See resolveBinaryPathCached.
binaryCommand
: The command to resolve the binary path for.
Returns a Future that completes with the resolved binary path as a String.
Implementation
@override
Future<String> resolveBinaryPath(String binaryCommand) async {
return '/bin/$binaryCommand';
}