children property

  1. @override
List<Bs4Element> children

The element's (tag's) children.

Implementation

@override
List<Bs4Element> get children => _element.children.map((e) => e.bs4).toList();