GroupTextElement constructor
GroupTextElement(
- List<
InlineTextElement> children
Implementation
GroupTextElement(List<InlineTextElement> children)
: assert(children.isNotEmpty, 'The children list cannot be empty'),
_children = children,
_metrics = _computeMetrics(children);