copyWith method
Implementation
TextLine copyWith({
List<TextElement>? elements,
}) {
return TextLine(
elements: elements ?? this.elements,
);
}
TextLine copyWith({
List<TextElement>? elements,
}) {
return TextLine(
elements: elements ?? this.elements,
);
}