call method
Runs the action and its effects.
Takes three arguments
Implementation
T call(SaveObserver $, A a, B b, C c) {
final ret = run($, a, b, c);
Future(() {
final effects = $.getActionEffects(this);
_runEffects($, effects, a, b, c);
});
return ret;
}