valuesChecked method
Returns the values of this instance checking keyTimeout.
See checkAllEntries.
Implementation
List<V> valuesChecked({DateTime? now, Duration? keyTimeout}) =>
keysChecked(
now: now,
keyTimeout: keyTimeout,
).map((k) => _entries[k]!).toList();