call method

T call(
  1. SaveObserver $
)

Runs the action and its effects.

Implementation

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