runWithConfig method
Runs this command with prepared configuration (options). Subclasses should override this method.
Implementation
@override
Future<void> runWithConfig(
final Configuration<RevokeTokenCommandOption> commandConfig,
) async {
final tokenId = commandConfig.value(RevokeTokenCommandOption.tokenId);
await Auth.revokeToken(
runner.serviceProvider.cloudApiClient,
logger: logger,
tokenId: tokenId,
localStoragePath: globalConfiguration.scloudDir.path,
);
}