updateCache method
更新缓存项(使用replace模式,因为主键已存在)
Implementation
Future<void> updateCache(String key, CacheItemsCompanion item) async {
await insertCache(item);
}
更新缓存项(使用replace模式,因为主键已存在)
Future<void> updateCache(String key, CacheItemsCompanion item) async {
await insertCache(item);
}