findPath static method
Implementation
static String findPath() {
if (Platform.isLinux) {
return getLinuxPath();
} else if (Platform.isWindows) {
return getWindowsPath();
} else if (Platform.isMacOS) {
return getMacOSPath();
}
throw ("Csound path not found");
}