addStage method

  1. @useResult
WidgetSelector<W> addStage(
  1. ElementFilter newStage
)

Adds a new stage to at the end to further narrow down the selection of widgets

Implementation

@useResult
WidgetSelector<W> addStage(ElementFilter newStage) {
  return copyWith(stages: [...stages, newStage]);
}