isConnected property
Implementation
bool get isConnected => _isConnected;
Implementation
set isConnected(bool value) {
_isConnected = value;
Node? first = firstChild;
while (first != null) {
first.isConnected = value;
first = first.nextSibling;
}
}