elementChildren property

List<Element> get elementChildren

Returns the list of child Elements on this html Node, or an empty list if there are no children.

Implementation

List<html.Element> get elementChildren {
  return node.children;
}