File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,22 @@ abstract class SourcesFilterEvent extends Equatable {
10
10
}
11
11
12
12
class LoadSourceFilterData extends SourcesFilterEvent {
13
- const LoadSourceFilterData ({this .initialSelectedSources = const []});
13
+ const LoadSourceFilterData ({
14
+ this .initialSelectedSources = const [],
15
+ this .initialSelectedCountryIsoCodes = const {},
16
+ this .initialSelectedSourceTypes = const {},
17
+ });
14
18
15
19
final List <Source > initialSelectedSources;
20
+ final Set <String > initialSelectedCountryIsoCodes;
21
+ final Set <SourceType > initialSelectedSourceTypes;
16
22
17
23
@override
18
- List <Object ?> get props => [initialSelectedSources];
24
+ List <Object ?> get props => [
25
+ initialSelectedSources,
26
+ initialSelectedCountryIsoCodes,
27
+ initialSelectedSourceTypes,
28
+ ];
19
29
}
20
30
21
31
class CountryCapsuleToggled extends SourcesFilterEvent {
You can’t perform that action at this time.
0 commit comments