winGetPosition method

Future<List<int>> winGetPosition(
  1. Window window
)

Implementation

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