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 bb6b0f7 commit 04d368fCopy full SHA for 04d368f
lib/headlines-search/models/search_model_type.dart
@@ -2,7 +2,7 @@
2
enum SearchModelType {
3
headline,
4
category,
5
- country,
+ // country, // Removed
6
source;
7
8
/// Returns a user-friendly display name for the enum value.
@@ -16,8 +16,8 @@ enum SearchModelType {
16
return 'Headlines';
17
case SearchModelType.category:
18
return 'Categories';
19
- case SearchModelType.country:
20
- return 'Countries';
+ // case SearchModelType.country: // Removed
+ // return 'Countries'; // Removed
21
case SearchModelType.source:
22
return 'Sources';
23
}
0 commit comments