1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

migrate from ui.hash* to Object.hash* (#1133)

This commit is contained in:
Viren Khatri
2022-04-24 12:37:46 +05:30
committed by GitHub
parent 16238e49d4
commit a23b33f6c9

View File

@@ -114,5 +114,5 @@ class AppState extends ChangeNotifier {
}
@override
int get hashCode => hashValues(places, selectedCategory, viewType);
int get hashCode => Object.hash(places, selectedCategory, viewType);
}