visitChildSpans method

bool visitChildSpans(
  1. InlineSpanVisitorWithIndex visitor
)

Walks this paragraph's InlineSpan and its descendants in pre-order and calls visitor for each span that has text.

When visitor returns true, the walk will continue. When visitor returns false, then the walk will end.

Implementation

bool visitChildSpans(InlineSpanVisitorWithIndex visitor) =>
    rp!.text.visitChildrenEx(visitor);