TouchEventInit constructor

TouchEventInit({
  1. bool bubbles,
  2. bool cancelable,
  3. bool composed,
  4. Window? view,
  5. int detail,
  6. JSObject? sourceCapabilities,
  7. int which,
  8. bool ctrlKey,
  9. bool shiftKey,
  10. bool altKey,
  11. bool metaKey,
  12. bool modifierAltGraph,
  13. bool modifierCapsLock,
  14. bool modifierFn,
  15. bool modifierFnLock,
  16. bool modifierHyper,
  17. bool modifierNumLock,
  18. bool modifierScrollLock,
  19. bool modifierSuper,
  20. bool modifierSymbol,
  21. bool modifierSymbolLock,
  22. JSArray<Touch> touches,
  23. JSArray<Touch> targetTouches,
  24. JSArray<Touch> changedTouches,
})

Implementation

external factory TouchEventInit({
  bool bubbles,
  bool cancelable,
  bool composed,
  Window? view,
  int detail,
  JSObject? sourceCapabilities,
  int which,
  bool ctrlKey,
  bool shiftKey,
  bool altKey,
  bool metaKey,
  bool modifierAltGraph,
  bool modifierCapsLock,
  bool modifierFn,
  bool modifierFnLock,
  bool modifierHyper,
  bool modifierNumLock,
  bool modifierScrollLock,
  bool modifierSuper,
  bool modifierSymbol,
  bool modifierSymbolLock,
  JSArray<Touch> touches,
  JSArray<Touch> targetTouches,
  JSArray<Touch> changedTouches,
});