notificationReducer function
Implementation
NotificationState notificationReducer(NotificationState state, dynamic action) {
if (action is SetNotificationsAction) {
return state.copyWith(notifications: action.notifications);
}
return state;
}