multi property

Modifies the selector to match an unconstrained number of widgets.

This method returns a new selector that does not impose any constraints on the number of widgets it can match.

Implementation

@useResult
WidgetSelector<W> get multi {
  return overrideQuantityConstraint(QuantityConstraint.unconstrained);
}