checkMacOSInstallLocation method

Future<MacOSInstallLocationStatus> checkMacOSInstallLocation()

Returns macOS install-location status when supported.

Implementation

Future<MacOSInstallLocationStatus> checkMacOSInstallLocation() {
  return Future.value(
    const MacOSInstallLocationStatus(
      kind: MacOSInstallLocationKind.unsupported,
      bundlePath: null,
      targetPath: null,
    ),
  );
}