get<T> static method

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

Implementation

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