tBodies property

List<TableSectionElement> get tBodies

Implementation

List<TableSectionElement> get tBodies {
  return children
      .whereType<TableSectionElement>()
      .where((e) => e.tagName.toLowerCase() == 'body')
      .toList();
}