setAlwaysOnBottom method
Sets whether the window should show always below other windows.
@platforms linux,windows
Implementation
Future<void> setAlwaysOnBottom(bool isAlwaysOnBottom) async {
final Map<String, dynamic> arguments = {
'isAlwaysOnBottom': isAlwaysOnBottom,
};
await _channel.invokeMethod('setAlwaysOnBottom', arguments);
}