shouldAttribute method

void shouldAttribute(
  1. String? key,
  2. String? value
)
override

Implementation

void shouldAttribute(String? key, String? value) {
  super.shouldAttribute(key, value);
  for (XmlProcessor? child in _children) {
    child!.shouldAttribute(key, value);
  };
}