run method

  1. @mustCallSuper
  2. @override
Future<T> run()
inherited

Runs this command.

The return value is wrapped in a Future if necessary and returned by CommandRunner.runCommand.

Implementation

@mustCallSuper
@override
Future<T> run() {
  return exec(directory: dirFromArgs, ggLog: ggLog);
}