getAttributeNames method
Implementation
List<String> getAttributeNames() {
final list = <String>[];
var attribute = _firstAttribute;
while (attribute != null) {
list.add(attribute._qualifiedName);
attribute = attribute._next;
}
return list;
}