visitChildren method
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);
}
}
}