copyWith method
Implementation
@override
RichTextAnchorLink copyWith({
RichText? text,
String? anchorName,
String? url,
}) =>
RichTextAnchorLink(
text: text ?? this.text,
anchorName: anchorName ?? this.anchorName,
url: url ?? this.url,
);