hasAttributeNS method

bool hasAttributeNS(
  1. String? namespaceUri,
  2. String name
)

Implementation

bool hasAttributeNS(String? namespaceUri, String name) {
  return getAttributeNS(namespaceUri, name) != null;
}