hide method

Future<void> hide(
  1. String id, {
  2. bool animate = true,
})

Hide a window.

Implementation

Future<void> hide(String id, {bool animate = true}) async {
  await send<void>('hide', windowId: id, params: {
    'animate': animate,
  });
}