set<T> method

void set<T>(
  1. String key,
  2. T value
)

Implementation

void set<T>(String key, T value) => _cache[key] = value;