StoreProxy<S> constructor

const StoreProxy<S>(
  1. ValueGetter<S> state,
  2. EventAcceptor<S> processor,
  3. Object identity, [
  4. EventListener<S>? listener,
])

Implementation

const StoreProxy(
  ValueGetter<S> state,
  this.processor,
  this.identity, [
  this.listener,
]) : _state = state;