and static method

Inverted and(
  1. List<Tag> terms
)

Implementation

static Inverted and(List<Tag> terms) => Inverted(
      Alternative(
        terms.map((t) => Inverted(t)).toList(),
      ),
    );