GroupTextElement constructor

GroupTextElement(
  1. List<InlineTextElement> children
)

Implementation

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