run method

  1. @override
void run(
  1. String label,
  2. List<String> args
)
inherited

Implementation

@override
void run(String label, List<String> args) {
  unawaited(
    runAsync(label, args).catchError((Object error, StackTrace stackTrace) {
      server.log('Command $label failed: $error', level: LogLevel.error);
    }),
  );
}