winClose method

Future<void> winClose(
  1. Window window,
  2. bool force
)

Implementation

Future<void> winClose(Window window, bool force) {
  return call('nvim_win_close', args: [
    window,
    force,
  ]);
}