runWithConfig method
Runs this command with prepared configuration (options). Subclasses should override this method.
Implementation
@override
Future<void> runWithConfig(
final Configuration<BuildSecretUnsetCommandConfig> commandConfig,
) async {
final projectId = commandConfig.value(
BuildSecretUnsetCommandConfig.projectId,
);
final name = commandConfig.value(BuildSecretUnsetCommandConfig.name);
await DeploymentCommands.unsetBuildSecret(
runner.serviceProvider.cloudApiClient,
logger: logger,
projectId: projectId,
name: name,
);
}