Skip to content

Commit 3578ef0

Browse files
committed
feat(AppEvent): add isCompleted property to AppUserFeedDecoratorShown
- Add isCompleted boolean field to AppUserFeedDecoratorShown class - Update props list to include isCompleted
1 parent 40cddb4 commit 3578ef0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/app/bloc/app_event.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,11 @@ class AppUserFeedDecoratorShown extends AppEvent {
8787
const AppUserFeedDecoratorShown({
8888
required this.userId,
8989
required this.feedDecoratorType,
90+
this.isCompleted = false,
9091
});
9192
final String userId;
9293
final FeedDecoratorType feedDecoratorType;
94+
final bool isCompleted;
9395
@override
94-
List<Object> get props => [userId, feedDecoratorType];
96+
List<Object> get props => [userId, feedDecoratorType, isCompleted];
9597
}

0 commit comments

Comments
 (0)