winSetHeight method

Future<void> winSetHeight(
  1. Window window,
  2. int height
)

Implementation

Future<void> winSetHeight(Window window, int height) {
  return call('nvim_win_set_height', args: [
    window,
    height,
  ]);
}