wire static method

Alert? wire(
  1. Element element, [
  2. Alert? create()?
])

Retrieve the wired Alert object from an element. If there is no wired

  • Alert object, a new one will be created.
    • create - If provided, it will be used for Alert creation. Otherwise
  • the default constructor with no optional parameter value is used.

Implementation

static Alert? wire(Element element, [Alert? create()?]) =>
    p.wire(element, _name, create ?? (() => Alert(element)));