CacheTypedLink constructor

CacheTypedLink([
  1. Cache? cache
])

Implementation

CacheTypedLink([
  Cache? cache,
]) {
  /// Set default cache if none is provided
  this.cache = cache ??= _defaultCache = Cache();
}