Skip to content

Commit

Permalink
Merge pull request letsar#484 from kevmoo/drop_deprecation
Browse files Browse the repository at this point in the history
Drop use of deprecated hash function
  • Loading branch information
letsar authored Jul 19, 2024
2 parents 3043300 + c34d3fb commit 3280106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/notifications_old.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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)';
Expand Down

0 comments on commit 3280106

Please sign in to comment.