EffectImpl constructor

EffectImpl(
  1. void fn(), {
  2. bool lazy = false,
  3. bool detach = false,
  4. JoltDebugOption? debug,
})

Implementation

EffectImpl(this.fn,
    {bool lazy = false, bool detach = false, JoltDebugOption? debug})
    : raw = EffectNode(fn, lazy: lazy, detach: detach, debug: debug);