fromCache<T> method

T fromCache<T>(
  1. String key
)

Implementation

T fromCache<T>(String key) {
  return requireData[key] as T;
}