call method

  1. @override
Stream<Updater<TState>> call(
  1. Context<TState> context
)
override

An action execution will update the context's state by producing a stream of updates.

The easier way to implement such a method is by using async * generators.

Implementation

@override
Stream<Updater<TState>> call(
  Context<TState> context,
) =>
    _call(context);