isCached property

bool get isCached

Implementation

bool get isCached {
  if (cache == false) return false;

  final isValid = DateTime.now().isBefore(expires);
  final cached = hasData && isValid;

  return cached;
}