expireTag method

Future<void> expireTag(
  1. String tag, [
  2. List<String> additionalTags = const []
])

Expires one or more tags within this cache namespace.

Implementation

Future<void> expireTag(String tag, [List<String> additionalTags = const []]) {
  return vercelRuntimeCacheExpireTag(
    _cache,
    _mergeTagInput(tag, additionalTags),
  );
}