call method

void call(
  1. StoreSnapshot<S> data,
  2. Event<S> event,
  3. UniqueKey key
)

Implementation

void call(
  StoreSnapshot<S> data,
  Event<S> event,
  UniqueKey key,
) {
  if (key != _key) {
    _key = key;
    decorated(data, event, key);
  }
}