ElementInteractionsOptions constructor

const ElementInteractionsOptions({
  1. List<String>? cssSelectorAllowlist = defaultCssSelectorAllowlist,
  2. List<String>? actionClickAllowlist,
  3. String? dataAttributePrefix,
  4. List<String>? pageUrlAllowlist,
})

Web specific

Configuration for autocapturing element interaction (click) events.

See docs for more information.

Implementation

const ElementInteractionsOptions({
  this.cssSelectorAllowlist = defaultCssSelectorAllowlist,
  this.actionClickAllowlist,
  this.dataAttributePrefix,
  this.pageUrlAllowlist,
});