checkMacOSInstallLocation method
Returns macOS install-location status when supported.
Implementation
Future<MacOSInstallLocationStatus> checkMacOSInstallLocation() {
return Future.value(
const MacOSInstallLocationStatus(
kind: MacOSInstallLocationKind.unsupported,
bundlePath: null,
targetPath: null,
),
);
}