We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40cddb4 commit 3578ef0Copy full SHA for 3578ef0
lib/app/bloc/app_event.dart
@@ -87,9 +87,11 @@ class AppUserFeedDecoratorShown extends AppEvent {
87
const AppUserFeedDecoratorShown({
88
required this.userId,
89
required this.feedDecoratorType,
90
+ this.isCompleted = false,
91
});
92
final String userId;
93
final FeedDecoratorType feedDecoratorType;
94
+ final bool isCompleted;
95
@override
- List<Object> get props => [userId, feedDecoratorType];
96
+ List<Object> get props => [userId, feedDecoratorType, isCompleted];
97
}
0 commit comments