paste method

Future<bool> paste(
  1. String data,
  2. bool crlf,
  3. int phase
)

Implementation

Future<bool> paste(String data, bool crlf, int phase) {
  return call('nvim_paste', args: [
    data,
    crlf,
    phase,
  ]).then<bool>((v) => v as bool);
}