get method

dynamic get(
  1. String key
)

Implementation

dynamic get(String key) {
  if (has(key)) {
    return _cache[key];
  }
  return null;
}