Skip to content

Commit

Permalink
dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
maeddin committed Feb 6, 2024
1 parent d52c8fe commit 6f03e9b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/src/properties.dart
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,11 @@ class TogglePosition<T> {
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is PositionListenerInfo &&
runtimeType == other.runtimeType &&
value == other.mode &&
index == other.index &&
position == other.position;
other is PositionListenerInfo &&
runtimeType == other.runtimeType &&
value == other.mode &&
index == other.index &&
position == other.position;

@override
int get hashCode => value.hashCode ^ index.hashCode ^ position.hashCode;
Expand Down

0 comments on commit 6f03e9b

Please sign in to comment.