shouldClosedTag method

void shouldClosedTag(
  1. String? tag
)
override

Implementation

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