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