runWithOutput method
Future<void>
runWithOutput(
- Configuration<
OptionDefinition> commandConfig, - CommandOutput output
override
Runs this command with prepared configuration and output.
Subclasses should override this method.
Implementation
@override
Future<void> runWithOutput(
final Configuration commandConfig,
final CommandOutput output,
) async {
await renderCommand(
output,
operation: () => MeCommands.showCurrentUserOperation(
runner.serviceProvider.cloudApiClient,
),
textOutputUi: MeTextUi(),
);
}