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