addCacheTag method

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

Adds one or more cache tags to the current execution context.

Implementation

Future<void> addCacheTag(
  String tag, [
  List<String> additionalTags = const [],
]) {
  return vercelAddCacheTag(_helpers, _mergeTagInput(tag, additionalTags));
}