Skip to content

Commit

Permalink
chore: fix new lint
Browse files Browse the repository at this point in the history
  • Loading branch information
knaeckeKami committed Jan 13, 2024
1 parent af96cb0 commit aa5a204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/normalize/lib/src/utils/field_key.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class FieldKey {
) : args = SplayTreeMap<String, dynamic>.from(args);

@override
bool operator ==(Object? other) => other.toString() == toString();
bool operator ==(Object other) => other.toString() == toString();

@override
int get hashCode => toString().hashCode;
Expand Down

0 comments on commit aa5a204

Please sign in to comment.