MutationObserverInit constructor
MutationObserverInit({})
Implementation
factory MutationObserverInit(
{bool? childList,
bool? attributes,
bool? characterData,
bool? subtree,
bool? attributeOldValue,
bool? characterDataOldValue,
Iterable<String>? attributeFilter}) =>
MutationObserverInit._(
childList: childList ?? false,
attributes: attributes ?? undefined,
characterData: characterData ?? undefined,
subtree: subtree ?? false,
attributeOldValue: attributeOldValue ?? undefined,
characterDataOldValue: characterDataOldValue ?? undefined,
attributeFilter: attributeFilter ?? undefined);