execvp function

int execvp(
  1. String path,
  2. List<String> args
)

Implementation

int execvp(String path, List<String> args) => platform.execvp(path, args);