winGetHeight method

Future<int> winGetHeight(
  1. Window window
)

Implementation

Future<int> winGetHeight(Window window) {
  return call('nvim_win_get_height', args: [
    window,
  ]).then<int>((v) => v as int);
}