runAsync abstract method

Future<String> runAsync(
  1. List<String> arguments, {
  2. String? script,
  3. RunOptions? runOptions,
})

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').runAsync(script: 'init'); will run grinder:init.

Implementation

Future<String> runAsync(List<String> arguments,
    {String? script, RunOptions? runOptions});