visitChildren method

  1. @override
void visitChildren(
  1. void visitor(
    1. Element child
    )
)
override

Invokes visitor on each child element of this node.

Implementation

@override
void visitChildren(void Function(Element child) visitor) {
  for (final row in cellElements) {
    for (final el in row) {
      if (el != null) visitor(el);
    }
  }
}