call method

T call(
  1. SaveObserver $,
  2. A a,
  3. B b
)

Runs the action and its effects.

Takes two arguments

Implementation

T call(SaveObserver $, A a, B b) {
  final ret = run($, a, b);
  Future(() {
    final effects = $.getActionEffects(this);
    _runEffects($, effects, a, b);
  });
  return ret;
}