timeSinceLastCache property

Duration? get timeSinceLastCache

Tiempo transcurrido desde el último cache

Implementation

Duration? get timeSinceLastCache {
  if (lastCacheTime == null) return null;
  return DateTime.now().difference(lastCacheTime!);
}