Plugin constructor

Plugin({
  1. String version,
  2. void $beforeInit(),
  3. void $init(),
  4. void $afterInit(),
  5. void $redraw(),
  6. void $willDestroy(),
})

Implementation

external factory Plugin(
    {String version,
    void Function() $beforeInit,
    void Function() $init,
    void Function() $afterInit,
    void Function() $redraw,
    void Function() $willDestroy});