put method

Future<void> put(
  1. List<String> lines,
  2. String type,
  3. bool after,
  4. bool follow,
)

Implementation

Future<void> put(List<String> lines, String type, bool after, bool follow) {
  return call('nvim_put', args: [
    lines,
    type,
    after,
    follow,
  ]);
}