copyWith method
Implementation
Tag copyWith({
String? name,
List<ASTNode>? content,
List<Filter>? filters,
List<ASTNode>? body,
}) {
return Tag(
name ?? this.name,
content ?? this.content,
filters: filters ?? this.filters,
body: body ?? this.body,
);
}