String label

A textual description of this node.

Source

String get label => _label;
void label=(String value)

Source

set label(String value) {
  assert(value != null);
  if (_label != value) {
    _label = value;
    _markDirty();
  }
}