moveAbove method

Future<void> moveAbove(
  1. String id,
  2. String otherId
)

Move window above another.

Implementation

Future<void> moveAbove(String id, String otherId) async {
  await send<void>('moveAbove', windowId: id, params: {
    'otherId': otherId,
  });
}