getNamedItemNS method

Attr? getNamedItemNS(
  1. String? namespace,
  2. String localName
)

The getNamedItemNS() method of the NamedNodeMap interface returns the Attr corresponding to the given local name in the given namespace, or null if there is no corresponding attribute.

Implementation

external Attr? getNamedItemNS(
  String? namespace,
  String localName,
);