notificationReducer function

NotificationState notificationReducer(
  1. NotificationState state,
  2. dynamic action
)

Implementation

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