moveBelow method

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

Move window below another.

Implementation

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