exec method

Future<String> exec(
  1. String src,
  2. bool output
)

Implementation

Future<String> exec(String src, bool output) {
  return call('nvim_exec', args: [
    src,
    output,
  ]).then<String>((v) => v as String);
}