runWithOutput method
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.',
);
}