write<T extends Object> method
Writes the provide key
, value
pair to the in-memory cache.
Implementation
void write<T extends Object>({required String key, required T value}) {
_cache[key] = value;
}
Writes the provide key
, value
pair to the in-memory cache.
void write<T extends Object>({required String key, required T value}) {
_cache[key] = value;
}