EffectNode constructor

EffectNode({
  1. bool? cleanup,
  2. bool? enabled,
  3. int? priority,
  4. Iterable<Node> children = const [],
})

Implementation

EffectNode({
  bool? cleanup,
  super.enabled,
  super.priority,
  super.children,
}) : cleanup = cleanup ?? false;