tagForChildren property Null safety
Adds a semantics tag to the semantics subtree.
Implementation
SemanticsTag? get tagForChildren => _tagForChildren;
Implementation
set tagForChildren(SemanticsTag? value) {
if (_tagForChildren == value)
return;
markNeedsSemanticsUpdate();
_tagForChildren = value;
}