MutationObserverInit constructor

MutationObserverInit({
  1. bool? childList,
  2. bool? attributes,
  3. bool? characterData,
  4. bool? subtree,
  5. bool? attributeOldValue,
  6. bool? characterDataOldValue,
  7. Iterable<String>? attributeFilter,
})

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);