winGetWidth method

Future<int> winGetWidth(
  1. Window window
)

Implementation

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