run static method

String run(
  1. String package, {
  2. List<String>? arguments,
  3. RunOptions? runOptions,
  4. String? script,
  5. String? workingDirectory,
})

Run pub run on the given package and script.

If script is null it defaults to the same value as package.

Implementation

static String run(String package,
    {List<String>? arguments,
    RunOptions? runOptions,
    String? script,
    String? workingDirectory}) {
  runOptions = mergeWorkingDirectory(workingDirectory, runOptions);
  var scriptArg = script == null ? package : '$package:$script';
  final args = ['pub', 'run', scriptArg];
  if (arguments != null) args.addAll(arguments);
  return runlib.run(sdkBin('dart'), arguments: args, runOptions: runOptions);
}