TouchEvent constructor

TouchEvent(
  1. String type,
  2. bool bubbles,
  3. num localX,
  4. num localY,
  5. num stageX,
  6. num stageY,
  7. bool? altKey,
  8. bool? ctrlKey,
  9. bool? shiftKey,
  10. int touchPointID,
  11. bool isPrimaryTouchPoint,
)

Creates a new TouchEvent.

Implementation

TouchEvent(
    super.type,
    super.bubbles,
    super.localX,
    super.localY,
    super.stageX,
    super.stageY,
    super.altKey,
    super.ctrlKey,
    super.shiftKey,
    this.touchPointID,
    this.isPrimaryTouchPoint);