MutationObserverOptions constructor

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

Creates mutation-observer options.

Implementation

const MutationObserverOptions({
  this.childList = true,
  this.attributes = false,
  this.characterData = false,
  this.subtree = false,
  this.attributeOldValue = false,
  this.characterDataOldValue = false,
  this.attributeFilter,
});