get abstract method

Future get(
  1. String key, {
  2. Duration? expiryDuration,
})

Returns the cache value for the specified key. If specified expiryDuration is used instead of the configured expiry policy duration

  • key: the key
  • expiryDuration: Expiry duration to be used in place of the configured expiry policy duration

Implementation

Future<dynamic> get(String key, {Duration? expiryDuration});