setAlwaysOnBottom method

Future<void> setAlwaysOnBottom(
  1. bool isAlwaysOnBottom
)

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