isccPath method
Returns the absolute path to ISCC.exe for version, or null if that
version is not yet installed.
Implementation
String? isccPath(String version) {
final path = p.join(versionsDir, version, 'ISCC.exe');
final file = File(path);
return file.existsSync() ? file.absolute.path : null;
}