Future<void> markMessageFailed(int id) async { await _database.update( tableName, {columnFailed: 1}, where: '$columnId = ?', whereArgs: [id], ); }