firstChildNode property

Node? get firstChildNode

Implementation

web.Node? get firstChildNode {
  if (firstChild case DomRenderFragment c) {
    return c.firstChildNode;
  }
  return firstChild?.node;
}