Conjunction constructor

Conjunction(
  1. Iterable<Node> list
)

Implementation

factory Conjunction(Iterable<Node> list) =>
    Conjunction._(list.toList(growable: false));