wire static method

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

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

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

Implementation

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