Dart SDK
dart:html
MutationObserver
class
MutationObserver
Static Properties
Constructors
Methods
Static properties
supported
Constructors
MutationObserver
Methods
disconnect
takeRecords
observe
(Not documented.)
Annotations
DomName('MutationObserver')
SupportedBrowser(SupportedBrowser.CHROME)
SupportedBrowser(SupportedBrowser.FIREFOX)
SupportedBrowser(SupportedBrowser.SAFARI)
Experimental()
Static Properties
bool
supported
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
takeRecords
(
) →
List
<
MutationRecord
>
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.