BlocNotificationListener<B extends BlocNotificationMixin<S, N>, S, N> constructor

const BlocNotificationListener<B extends BlocNotificationMixin<S, N>, S, N>({
  1. Key? key,
  2. Widget? child,
  3. BlocWidgetNotificationListener<N>? notificationListener,
  4. BlocWidgetListener<S>? listener,
  5. BlocListenerCondition<S>? listenWhen,
  6. B? bloc,
})

Implementation

const BlocNotificationListener({
  super.key,
  super.child,
  this.notificationListener,
  this.listener,
  this.listenWhen,
  this.bloc,
});