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