Merge pull request #156 from erisanolasheni/main

Minor fix on the operator check
This commit is contained in:
Shawn 2024-01-18 11:34:39 -07:00 committed by GitHub
commit a40ce7c080
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,7 +90,7 @@ class RetryImage extends ImageProvider<Object> {
if (other.runtimeType != runtimeType) { if (other.runtimeType != runtimeType) {
return false; return false;
} }
return other is RetryImage && other.imageProvider == other.imageProvider && other.scale == scale; return other is RetryImage && other.imageProvider == imageProvider && other.scale == scale;
} }
@override @override