StatePropertyNotify<TState extends ReduxState, T> constructor

const StatePropertyNotify<TState extends ReduxState, T>({
  1. Key? key,
  2. ReduxStore<TState>? store,
  3. required StatePropertySelector<TState, T> selector,
  4. void listen(
    1. BuildContext buildContext,
    2. T value
    )?,
  5. bool equals(
    1. T a,
    2. T b
    )?,
  6. required Widget child,
})

Implementation

const StatePropertyNotify({
  Key? key,
  this.store,
  required this.selector,
  this.listen,
  this.equals,
  required this.child,
}) : super(key: key);