firstChild property

Node? get firstChild

Implementation

Node? get firstChild {
  final dom.Node? child = _el?.firstChild;
  return child == null ? null : Node(child);
}