refactor: Remove unused variable
This commit is contained in:
parent
4f60e1d604
commit
7ed809d748
|
|
@ -366,9 +366,6 @@ class Room {
|
||||||
/// Wheither this is a direct chat or not
|
/// Wheither this is a direct chat or not
|
||||||
bool get isDirectChat => directChatMatrixID != null;
|
bool get isDirectChat => directChatMatrixID != null;
|
||||||
|
|
||||||
/// Must be one of [all, mention]
|
|
||||||
String? notificationSettings;
|
|
||||||
|
|
||||||
Event? _lastEvent;
|
Event? _lastEvent;
|
||||||
|
|
||||||
set lastEvent(Event? event) {
|
set lastEvent(Event? event) {
|
||||||
|
|
@ -417,7 +414,6 @@ class Room {
|
||||||
this.highlightCount = 0,
|
this.highlightCount = 0,
|
||||||
this.prev_batch,
|
this.prev_batch,
|
||||||
required this.client,
|
required this.client,
|
||||||
this.notificationSettings,
|
|
||||||
Map<String, BasicRoomEvent>? roomAccountData,
|
Map<String, BasicRoomEvent>? roomAccountData,
|
||||||
RoomSummary? summary,
|
RoomSummary? summary,
|
||||||
Event? lastEvent,
|
Event? lastEvent,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue