stepsQuery property

  1. @ContentChildren(StepDirective)
set stepsQuery (List<StepDirective> value)

Implementation

@ContentChildren(StepDirective)
set stepsQuery(List<StepDirective> value) {
  if (_stepDirectiveList == value) return;
  _stepAriaLabel.clear();
  _stepDirectiveList = value;
  //activeStepIndex ??= 0;
  scheduleMicrotask(() {
    _onStepsChange(_stepDirectiveList);
  });
}