runWithConfig method
Runs this command with prepared configuration (options). Subclasses should override this method.
Implementation
@override
Future<void> runWithConfig(
final Configuration<ProjectListCommandOption> commandConfig,
) async {
final showArchived = commandConfig.value(ProjectListCommandOption.all);
await ProjectCommands.listProjects(
runner.serviceProvider.cloudApiClient,
logger: logger,
showArchived: showArchived,
);
}