MutationObserverInit constructor

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

Implementation

const MutationObserverInit({
  this.childList,
  this.attributes,
  this.characterData,
  this.subtree,
  this.attributeOldValue,
  this.characterDataOldValue,
  this.attributeFilter,
});