Not documented.

Annotations
  • DomName('MutationObserver')
  • SupportedBrowser(SupportedBrowser.CHROME)
  • SupportedBrowser(SupportedBrowser.FIREFOX)
  • SupportedBrowser(SupportedBrowser.SAFARI)
  • Experimental()

Static Properties

supported bool
read-only

Checks to see if the mutation observer API is supported on the current platform.

Constructors

MutationObserver(void callback(List<MutationRecord> mutations, MutationObserver observer))

Methods

disconnect() → void

observe(Node target, {bool childList, bool attributes, bool characterData, bool subtree, bool attributeOldValue, bool characterDataOldValue, List<String> attributeFilter}) → void

Observes the target for the specified changes.

takeRecords() → List<MutationRecord>