uiTryResize method

Future<void> uiTryResize(
  1. int width,
  2. int height
)

Implementation

Future<void> uiTryResize(int width, int height) {
  return call('nvim_ui_try_resize', args: [
    width,
    height,
  ]);
}