listElementRender function
Implementation
CustomRender listElementRender(
{Style? style, Widget? child, List<InlineSpan>? children}) {
return CustomRender.inlineSpan(
inlineSpan: (context, buildChildren) {
return WidgetSpan(
child: CssBoxWidget.withInlineSpanChildren(
key: context.key,
style: style ?? context.style,
shrinkWrap: context.parser.shrinkWrap,
children: buildChildren(),
),
);
},
);
}