run abstract method

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

Run the application. If the application is not installed this command will first activate it.

If script is provided, the sub-script will be run. So new PubApp.global('grinder').run(script: 'init'); will run grinder:init.

Implementation

String run(List<String> arguments,
    {String? script, RunOptions? runOptions, String? workingDirectory});