Update deprecating hash method in raw_image_provider.dart (#2690)

This commit is contained in:
Anthony Taormina 2024-11-20 04:57:13 -06:00 committed by GitHub
parent b2061f1cf9
commit 96d72165f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -94,7 +94,7 @@ class _RawImageKey {
@override
int get hashCode {
return hashValues(w, h, format, dataHash.hashCode);
return Object.hash(w, h, format, dataHash.hashCode);
}
}