createEffect method

SaveEffect createEffect(
  1. void onRun(
    1. SaveObserver $,
    2. A a,
    3. B b,
    4. C c,
    )
)

Creates the effect for this action.

Implementation

SaveEffect createEffect(void Function(SaveObserver $, A a, B b, C c) onRun) {
  return SaveActionEffect3(actionKey, onRun);
}