hasExpired method

Future<bool> hasExpired(
  1. String key
)

Implementation

Future<bool> hasExpired(String key) =>
    getStaleness(key).then((value) => value > expirationTime);