putIfAbsentChecked method
Same as putIfAbsent, but calls checkEntry first.
Implementation
V putIfAbsentChecked(
K key,
V Function() ifAbsent, {
DateTime? now,
Duration? keyTimeout,
}) {
checkEntry(key, now: now, keyTimeout: keyTimeout);
return putIfAbsent(key, ifAbsent);
}