createEffect method

SaveEffect createEffect(
  1. void onRun(
    1. SaveObserver $,
    2. A a,
    3. B b,
    4. C c,
    5. D d,
    6. E e,
    7. F f,
    )
)

Creates the effect for this action.

Implementation

SaveEffect createEffect(
  void Function(SaveObserver $, A a, B b, C c, D d, E e, F f) onRun,
) {
  return SaveActionEffect6(actionKey, onRun);
}