PushNotificationBloc constructor

PushNotificationBloc()

Implementation

PushNotificationBloc() : super(const PushNotificationInitial()) {
  on<DidReceivedNotificationEvent>(_onDidNotificationReceived);
  on<DidUserOpenedNotificationEvent>(_onDidUserOpenedNotification);
  on<DidResetNotificationEvent>(_onDidResetNotification);
}