properties property

SemanticsProperties properties

All of the SemanticsProperties for this RenderSemanticsAnnotations.

Implementation

SemanticsProperties get properties => _properties;
void properties=(SemanticsProperties value)

Implementation

set properties(SemanticsProperties value) {
  if (_properties == value) {
    return;
  }
  _properties = value;
  _updateAttributedFields(_properties);
  markNeedsSemanticsUpdate();
}