clear method

Future<void> clear()

Deletes all the ChatMessages stored in the database.

Implementation

Future<void> clear() async {
  _cache.clear();

  await safe((db) async {
    await db.delete(db.drafts).go();
  }, tag: 'draft.clear()');
}