shouldClosedTag method
Implementation
void shouldClosedTag(String? tag) {
super.shouldClosedTag(tag);
for (XmlProcessor? child in _children) {
child!.shouldClosedTag(tag);
};
}
void shouldClosedTag(String? tag) {
super.shouldClosedTag(tag);
for (XmlProcessor? child in _children) {
child!.shouldClosedTag(tag);
};
}