runWithOutput method

Future<void> runWithOutput(
  1. Configuration<O> commandConfig,
  2. CommandOutput output
)

Runs this command with prepared configuration and output.

Subclasses should override this method.

Implementation

Future<void> runWithOutput(
  Configuration<O> commandConfig,
  CommandOutput output,
) async {
  throw UnimplementedError(
    'CLI command $name has not implemented runWithOutput.',
  );
}