withTextSpanChildren method

VxRichText withTextSpanChildren(
  1. List<TextSpan> children
)

Set children with list of text spans

Implementation

VxRichText withTextSpanChildren(List<TextSpan> children) {
  _textSpanChildren = children;
  return this;
}