runAsync abstract method
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});