clearMessages method

Future<void> clearMessages()

Clears the message log for the ReaderChatgptSource.

Implementation

Future<void> clearMessages() async {
  await _database.writeTxn(() async {
    await _database.messageItems.clear();
  });
}