run method
Runs this command.
The return value is wrapped in a Future if necessary and returned by
CommandRunner.runCommand.
Implementation
@override
Future<int> run() async {
await runPub(this, sharedLibraryDirectory, ["get"]);
await runPub(this, serverDirectory, ["get"]);
await runPub(this, generatedClientDirectory, ["get"]);
await runPub(this, applicationDirectory, ["get"]);
return ExitCode.success.code;
}