setWindowAlwaysOnBottom function
Implementation
Future setWindowAlwaysOnBottom(bool alwaysOnBottom) async {
if (isDesktopPlatform()) {
debugPrint("setWindowAlwaysOnBottom($alwaysOnBottom)");
await windowManager.setAlwaysOnBottom(alwaysOnBottom);
}
}