You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With equalityCheckMethod: equatable, an implementation file (package:equatable/src/equatable_utils.dart) is imported and the internal equals and mapPropsToHashCode functions are used.
equals was recently removed in Equatable v2.0.6 and then reverted in v2.0.7.
Suggest a fix
Would it be possible to use Equatable through the public interface instead of depending on internal code that may break again in the future?
The text was updated successfully, but these errors were encountered:
Bug Report Checklist
Description
With
equalityCheckMethod: equatable
, an implementation file (package:equatable/src/equatable_utils.dart
) is imported and the internalequals
andmapPropsToHashCode
functions are used.equals
was recently removed in Equatable v2.0.6 and then reverted in v2.0.7.Suggest a fix
Would it be possible to use
Equatable
through the public interface instead of depending on internal code that may break again in the future?The text was updated successfully, but these errors were encountered: