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