updateConversation method

Future<void> updateConversation(
  1. Conversation conversation
)

Implementation

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