getRuntimeFile method

Future<List<String>> getRuntimeFile(
  1. String name,
  2. bool all
)

Implementation

Future<List<String>> getRuntimeFile(String name, bool all) {
  return call('nvim_get_runtime_file', args: [
    name,
    all,
  ]).then<List<String>>((v) => (v as List).cast<String>());
}