copyWith method
Creates a copy of this node
Implementation
@override
LinkNode copyWith({
String? url,
List<MarkdownNode>? children,
String? title,
}) {
return LinkNode(
url: url ?? this.url,
children: children ?? this.children,
title: title ?? this.title,
);
}