copyWith method
Creates a copy of this node
Implementation
@override
ImageNode copyWith({String? url, String? alt, String? title}) {
return ImageNode(
url: url ?? this.url,
alt: alt ?? this.alt,
title: title ?? this.title,
);
}
Creates a copy of this node
@override
ImageNode copyWith({String? url, String? alt, String? title}) {
return ImageNode(
url: url ?? this.url,
alt: alt ?? this.alt,
title: title ?? this.title,
);
}