getCachedVariable<T> method

T? getCachedVariable<T>(
  1. String key
)

Implementation

T? getCachedVariable<T>(String key) {
  return _cache[key] as T?;
}