setAlwaysOnBottom method
Sets whether the window should show always below other windows.
Supported Platforms:
- Windows
Implementation
Future<void> setAlwaysOnBottom(bool isAlwaysOnBottom) async {
final Map<String, dynamic> arguments = {
'isAlwaysOnBottom': isAlwaysOnBottom,
};
await _invokeMethod('setAlwaysOnBottom', arguments);
}