header property

bool header

If non-null, sets the SemanticsNode.isHeader semantic to the given value.

Implementation

bool get header => _header;
void header= (bool value)

Implementation

set header(bool value) {
  if (header == value)
    return;
  _header = value;
  markNeedsSemanticsUpdate();
}