isValid method

bool isValid(
  1. PackageCategory category
)

Check if cache entry is valid

Implementation

bool isValid(PackageCategory category) {
  final now = DateTime.now();
  final difference = now.difference(category.fetchedAt);
  return difference.inDays < _cacheTtlDays;
}