copyWithStyle method
Implementation
WrappedText copyWithStyle(WrappedTextDataBuilder<TextStyle> style) {
return WrappedText(
style: (context, theme) =>
style(context, theme).merge(this.style?.call(context, theme)),
textAlign: textAlign,
softWrap: softWrap,
overflow: overflow,
maxLines: maxLines,
textWidthBasis: textWidthBasis,
child: child,
);
}