From 7ed809d748b071385d6d73ba4086fc0033cdcc9c Mon Sep 17 00:00:00 2001 From: Krille Date: Mon, 29 Apr 2024 15:45:21 +0200 Subject: [PATCH] refactor: Remove unused variable --- lib/src/room.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/src/room.dart b/lib/src/room.dart index d8afb43bf..6763655bc 100644 --- a/lib/src/room.dart +++ b/lib/src/room.dart @@ -366,9 +366,6 @@ class Room { /// Wheither this is a direct chat or not bool get isDirectChat => directChatMatrixID != null; - /// Must be one of [all, mention] - String? notificationSettings; - Event? _lastEvent; set lastEvent(Event? event) { @@ -417,7 +414,6 @@ class Room { this.highlightCount = 0, this.prev_batch, required this.client, - this.notificationSettings, Map? roomAccountData, RoomSummary? summary, Event? lastEvent,