onWillGet method
Custom logic to be executed before a Cache.get or Cache.getAsync.
Implementation
@override
void onWillGet(TIdentifier id) {
_count[id] = _count.putIfAbsent(id, () => 0) + 1;
}
Custom logic to be executed before a Cache.get or Cache.getAsync.
@override
void onWillGet(TIdentifier id) {
_count[id] = _count.putIfAbsent(id, () => 0) + 1;
}