put method
Inserts an item with the given key into the cache
Implementation
void put(String key, T item) {
putWithDuration(key, item, _duration);
}
Inserts an item with the given key into the cache
void put(String key, T item) {
putWithDuration(key, item, _duration);
}