remove unnecessary override

This commit is contained in:
Fabian Freund
2025-02-28 14:32:17 +01:00
parent 2a2311253b
commit ef2a3505a1
28 changed files with 0 additions and 111 deletions
@@ -7,17 +7,11 @@ class ContainerFilterById extends ContainerFilter {
ContainerFilterById({required this.containerId});
@override
bool get cacheHash => true;
@override
List<Object?> get hashParameters => [containerId];
}
class ContainerFilterDisabled extends ContainerFilter {
@override
bool get cacheHash => true;
@override
List<Object?> get hashParameters => [null];
}
@@ -40,9 +40,6 @@ class ContainerAuthSettings with FastEquatable {
lockOnAppBackground,
lockTimeout,
];
@override
bool get cacheHash => true;
}
@CopyWith()
@@ -87,9 +84,6 @@ class ContainerMetadata with FastEquatable {
authSettings,
useProxy,
];
@override
bool get cacheHash => true;
}
@CopyWith()
@@ -106,9 +100,6 @@ class ContainerData with FastEquatable {
ContainerMetadata? metadata,
}) : metadata = metadata ?? ContainerMetadata.withDefaults();
@override
bool get cacheHash => true;
@override
List<Object?> get hashParameters => [id, name, color, metadata];
}
@@ -124,9 +115,6 @@ class ContainerDataWithCount extends ContainerData {
required this.tabCount,
});
@override
bool get cacheHash => true;
@override
List<Object?> get hashParameters => [...super.hashParameters, tabCount];
}
@@ -22,9 +22,6 @@ class TabQueryResult with FastEquatable {
required this.weightedRank,
});
@override
bool get cacheHash => true;
@override
List<Object?> get hashParameters => [
id,