hasCachedData static method

bool hasCachedData(
  1. String key
)

Check if cached data exists and is not expired

Implementation

static bool hasCachedData(String key) {
  return getCachedData(key) != null;
}