clear method
Deletes all the DtoChatItems stored in the database.
Implementation
Future<void> clear() async {
_cache.clear();
await safe((db) async {
await db.delete(db.chatItems).go();
await db.delete(db.chatItemViews).go();
}, tag: 'chat_item.clear()');
}