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 c6f2218 commit 5f4acf1Copy full SHA for 5f4acf1
lib/content_management/widgets/filter_dialog/bloc/filter_dialog_event.dart
@@ -90,12 +90,10 @@ final class FilterDialogHeadlinesCountryIdsChanged extends FilterDialogEvent {
90
final class FilterDialogBreakingNewsChanged extends FilterDialogEvent {
91
const FilterDialogBreakingNewsChanged(this.isBreaking);
92
93
- /// The new breaking news status: `true` for breaking only, `false` for
94
- /// non-breaking only, and `null` for all.
95
- final bool? isBreaking;
+ final BreakingNewsFilterStatus isBreaking;
96
97
@override
98
- List<Object?> get props => [isBreaking];
+ List<Object> get props => [isBreaking];
99
}
100
101
/// Event to update the temporary selected source types for sources.
0 commit comments