debugging work

This commit is contained in:
Christien Rioux 2025-03-22 21:43:37 -04:00
parent 739df7c427
commit d6b1c20906
71 changed files with 4155 additions and 3616 deletions

View file

@ -9,7 +9,7 @@ enum NotificationType {
}
@freezed
class NotificationItem with _$NotificationItem {
sealed class NotificationItem with _$NotificationItem {
const factory NotificationItem(
{required NotificationType type,
required String text,
@ -17,7 +17,7 @@ class NotificationItem with _$NotificationItem {
}
@freezed
class NotificationsState with _$NotificationsState {
sealed class NotificationsState with _$NotificationsState {
const factory NotificationsState({required IList<NotificationItem> queue}) =
_NotificationsState;
}