get<T, V extends Cache<T>> method

  1. @override
V? get<T, V extends Cache<T>>(
  1. String name
)
override

Gets an existing Cache

  • name: The name of the cache

Implementation

@override
V? get<T, V extends Cache<T>>(String name) {
  return _caches[name] as V?;
}