copy method
Implementation
HeadingNode copy({HeadingConfig? headingConfig}) {
final node = HeadingNode(headingConfig ?? this.headingConfig, visitor);
for (var e in children) {
node.accept(e);
}
return node;
}
HeadingNode copy({HeadingConfig? headingConfig}) {
final node = HeadingNode(headingConfig ?? this.headingConfig, visitor);
for (var e in children) {
node.accept(e);
}
return node;
}