setAlwaysOnBottom method

Future<void> setAlwaysOnBottom(
  1. bool isAlwaysOnBottom
)

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);
}