runner property

  1. @override
CompletionCommandRunner<T> runner
override

The command runner for this command.

This will be null until CommandRunner.addCommand has been called with this command or one of its parents.

Implementation

@override
CompletionCommandRunner<T> get runner {
  return super.runner! as CompletionCommandRunner<T>;
}