moveMacOSAppToApplications method
Moves the running macOS app to /Applications.
Implementation
@override
Future<void> moveMacOSAppToApplications({
bool replaceExisting = false,
}) async {
await methodChannel.invokeMethod<void>(
"moveMacOSAppToApplications",
{"replaceExisting": replaceExisting},
);
}