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 4a9291a commit ef05d7cCopy full SHA for ef05d7c
lib/account/bloc/account_event.dart
@@ -49,7 +49,13 @@ class AccountFollowSourceToggled extends AccountEvent {
49
List<Object> get props => [source];
50
}
51
52
-// AccountFollowCountryToggled event correctly removed previously
+class AccountFollowCountryToggled extends AccountEvent {
53
+ const AccountFollowCountryToggled({required this.country});
54
+ final Country country;
55
+
56
+ @override
57
+ List<Object> get props => [country];
58
+}
59
60
class AccountClearUserPreferences extends AccountEvent {
61
const AccountClearUserPreferences({required this.userId});
0 commit comments