getTimestamp method

DateTime? getTimestamp(
  1. Object queryKey
)

Get cached timestamp for a query

Implementation

DateTime? getTimestamp(Object queryKey) {
  final normalizedKey = QueryKey.normalize(queryKey);
  return _cache[normalizedKey]?.timestamp;
}