EffectImpl.lazy constructor
EffectImpl.lazy(
- void fn(), {
- bool detach = false,
- JoltDebugOption? debug,
Implementation
factory EffectImpl.lazy(void Function() fn,
{bool detach = false, JoltDebugOption? debug}) {
return EffectImpl(fn, lazy: true, detach: detach, debug: debug);
}