inMutuallyExclusiveGroup property
If non-null, sets the SemanticsNode.isInMutuallyExclusiveGroup
semantic
to the given value.
Implementation
bool get inMutuallyExclusiveGroup => _inMutuallyExclusiveGroup;
Implementation
set inMutuallyExclusiveGroup(bool value) {
if (inMutuallyExclusiveGroup == value)
return;
_inMutuallyExclusiveGroup = value;
markNeedsSemanticsUpdate();
}