readCache method

Future readCache(
  1. String key
)

读取缓存 key 缓存key

Implementation

Future readCache(String key) async {
  return getDb()?.get(key);
}