We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f2885c commit 3264599Copy full SHA for 3264599
flutter_inappwebview_platform_interface/lib/src/web_uri.dart
@@ -188,6 +188,17 @@ class WebUri implements Uri {
188
@override
189
String get userInfo => _uri.userInfo;
190
191
+ @override
192
+ bool operator ==(Object other) {
193
+ if (identical(this, other)) {
194
+ return true;
195
+ }
196
+ return other is WebUri &&
197
+ _uri == other._uri &&
198
+ _rawValue == other._rawValue &&
199
+ forceToStringRawValue == other.forceToStringRawValue;
200
201
+
202
///If [forceToStringRawValue] is `true` or [isValidUri] is `false`, it returns [rawValue],
203
///otherwise the value of [uriValue]`.toString()`.
204
0 commit comments