menu
dartcore package
documentation
cache.dart
Cache
set method
set method
dark_mode
light_mode
set
method
void
set
(
String
key
,
dynamic
value
)
Add or update an item in the cache
Implementation
void set(String key, dynamic value) { _cache[key] = value; }
dartcore package
documentation
cache
Cache
set method
Cache class