uiPumSetBounds method

Future<void> uiPumSetBounds(
  1. double width,
  2. double height,
  3. double row,
  4. double col,
)

Implementation

Future<void> uiPumSetBounds(
    double width, double height, double row, double col) {
  return call('nvim_ui_pum_set_bounds', args: [
    width,
    height,
    row,
    col,
  ]);
}