getExeLocation function
Get the location Dartle would store binaries created with the createDartExe method.
Implementation
File getExeLocation(File dartFile, [DartleCache? dartleCache]) {
final cache = dartleCache ?? DartleCache.instance;
return cache.getExecutablesLocation(dartFile);
}