updateConversation method
Implementation
Future<void> updateConversation(Conversation conversation) async {
final db = await _getDb();
await db.update(
_tableConversationName,
conversation.toMap(),
where: '$_columnUuid = ?',
whereArgs: [conversation.uuid],
);
}