Skip to content

Commit

Permalink
fix analyze
Browse files Browse the repository at this point in the history
  • Loading branch information
boyan01 committed Nov 13, 2022
1 parent 76b0cee commit b9601b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/overlay_keys.dart
Expand Up @@ -37,7 +37,7 @@ class ModalKey<T> extends ValueKey<T> {
}

@override
int get hashCode => hashValues(runtimeType, value);
int get hashCode => Object.hash(runtimeType, value);
}

///
Expand Down Expand Up @@ -67,5 +67,5 @@ class TransientKey<T> extends ValueKey<T> {
}

@override
int get hashCode => hashValues(runtimeType, value);
int get hashCode => Object.hash(runtimeType, value);
}

0 comments on commit b9601b0

Please sign in to comment.