call method
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;
}