copy method
Returns a copy if this instance.
Implementation
@override
DOMTemplateBlockNot copy({bool resolveDSX = false}) {
var copy = DOMTemplateBlockNot(variable);
copy.nodes.addAll(copyNodes(resolveDSX: resolveDSX));
return copy;
}
Returns a copy if this instance.
@override
DOMTemplateBlockNot copy({bool resolveDSX = false}) {
var copy = DOMTemplateBlockNot(variable);
copy.nodes.addAll(copyNodes(resolveDSX: resolveDSX));
return copy;
}