WheelEvent constructor

WheelEvent(
  1. String type_, [
  2. WheelEventInit? eventInitDict
])

Implementation

factory WheelEvent(String type_, [WheelEventInit? eventInitDict]) =>
    WebRuntime.current.createWebObject<WheelEvent>('WheelEvent', [
      type_,
      eventInitDict,
    ]);