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