uiAttach method

Future<void> uiAttach(
  1. int width,
  2. int height,
  3. Map options
)

Implementation

Future<void> uiAttach(int width, int height, Map<dynamic, dynamic> options) {
  return call('nvim_ui_attach', args: [
    width,
    height,
    options,
  ]);
}