NotificationBloc constructor

NotificationBloc()

Implementation

NotificationBloc() : super(NotificationInitial(), subscribedTopics: [notificationTopic]) {
  on<NotificationEvent>((event, emit) {});
  on<ShowSnackBar>(_showSnackBar);
  on<ShowErrorSnackBar>(_showErrorSnackBar);
  on<ShowAlertDialog>(_showAlertDialog);
}