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 50285ef commit 75fcf7aCopy full SHA for 75fcf7a
lib/app/bloc/app_event.dart
@@ -99,3 +99,17 @@ class _AppConfigFetchRequested extends AppEvent {
99
/// {@macro _app_config_fetch_requested}
100
const _AppConfigFetchRequested();
101
}
102
+
103
+/// {@template app_user_account_action_shown}
104
+/// Event triggered when an AccountAction has been shown to the user,
105
+/// prompting an update to their `lastAccountActionShownAt` timestamp.
106
+/// {@endtemplate}
107
+class AppUserAccountActionShown extends AppEvent {
108
+ /// {@macro app_user_account_action_shown}
109
+ const AppUserAccountActionShown({required this.userId});
110
111
+ final String userId;
112
113
+ @override
114
+ List<Object> get props => [userId];
115
+}
0 commit comments