interactableElementRender function
Implementation
CustomRender interactableElementRender({List<InlineSpan>? children}) =>
CustomRender.inlineSpan(
inlineSpan: (context, buildChildren) => TextSpan(
children: children ??
(context.tree as InteractableElement)
.children
.map((tree) => context.parser.parseTree(context, tree))
.map((childSpan) {
return _getInteractableChildren(
context,
context.tree as InteractableElement,
childSpan,
context.style
.generateTextStyle()
.merge(childSpan.style));
}).toList(),
));