copyWith method
Implementation
RichTextUrl copyWith({RichText? text, String? url, bool? isCached}) =>
RichTextUrl(
text: text ?? this.text,
url: url ?? this.url,
isCached: isCached ?? this.isCached,
);
RichTextUrl copyWith({RichText? text, String? url, bool? isCached}) =>
RichTextUrl(
text: text ?? this.text,
url: url ?? this.url,
isCached: isCached ?? this.isCached,
);