Event constructor

Event(
  1. EventTypes type, {
  2. Map<String, String?>? parameters,
  3. bool bubbles = true,
  4. bool cancellable = true,
  5. WidgetModel? model,
})

Implementation

Event(this.type,
    {this.parameters,
    this.bubbles = true,
    this.cancellable = true,
    this.model});