@@ -34,6 +34,7 @@ class UsercentricsSettings {
3434 required this .framework,
3535 required this .publishedApps,
3636 required this .renewConsentsTimestamp,
37+ required this .consentWebhook,
3738 });
3839
3940 final UsercentricsLabels labels;
@@ -63,6 +64,7 @@ class UsercentricsSettings {
6364 final USAFrameworks ? framework;
6465 final List <PublishedApp >? publishedApps;
6566 final int ? renewConsentsTimestamp;
67+ final bool ? consentWebhook;
6668
6769 @override
6870 bool operator == (Object other) =>
@@ -98,7 +100,8 @@ class UsercentricsSettings {
98100 dpsDisplayFormat == other.dpsDisplayFormat &&
99101 framework == other.framework &&
100102 listEquals (publishedApps, other.publishedApps) &&
101- renewConsentsTimestamp == other.renewConsentsTimestamp;
103+ renewConsentsTimestamp == other.renewConsentsTimestamp &&
104+ consentWebhook == other.consentWebhook;
102105
103106 @override
104107 int get hashCode =>
@@ -128,7 +131,8 @@ class UsercentricsSettings {
128131 dpsDisplayFormat.hashCode +
129132 framework.hashCode +
130133 publishedApps.hashCode +
131- renewConsentsTimestamp.hashCode;
134+ renewConsentsTimestamp.hashCode +
135+ consentWebhook.hashCode;
132136
133137 @override
134138 String toString () =>
0 commit comments