From c34d3fbba3666e592cc01b048b69af6f695ae57a Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Fri, 12 Jul 2024 12:21:18 -0700 Subject: [PATCH] Drop use of deprecated hash function --- lib/src/notifications_old.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/notifications_old.dart b/lib/src/notifications_old.dart index 4d5b91f..0d798cc 100644 --- a/lib/src/notifications_old.dart +++ b/lib/src/notifications_old.dart @@ -85,7 +85,7 @@ class SlidableRatioNotification extends SlidableNotification { } @override - int get hashCode => hashValues(tag, ratio); + int get hashCode => Object.hash(tag, ratio); @override String toString() => 'SlidableRatioNotification(tag: $tag, ratio: $ratio)';