Skip to content

Commit

Permalink
Merge branch 'master' into feat/performance-improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel authored Nov 20, 2024
2 parents 751a2b0 + fc5cf81 commit 29e6c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ class EquatableDateTimeSubclass extends EquatableDateTime {
]) : super(year, month, day, hour, minute, second, millisecond, microsecond);
@override
List<Object> get props => super.props..addAll([century]);
List<Object> get props => [...super.props, century];
}
```

Expand Down

0 comments on commit 29e6c77

Please sign in to comment.