We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
class ComparableWrapper<V> extends Equatable { final V _value; ComparableWrapper(this._value); @override List<Object> get props => [_value]; } void main() async { final c1 = ComparableWrapper([0]); final c2 = ComparableWrapper([0,0]); print(c1.hashCode == c2.hashCode); //true print(c1 == c2); // false }
The text was updated successfully, but these errors were encountered:
Thanks to @Renesanse, the fix has been published in v1.2.1 🎉
Sorry, something went wrong.
machinescream
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: