GestureEventInit constructor

GestureEventInit({
  1. bool bubbles = false,
  2. bool cancelable = false,
  3. String state = '',
  4. String direction = '',
  5. double rotation = 0.0,
  6. double deltaX = 0.0,
  7. double deltaY = 0.0,
  8. double velocityX = 0.0,
  9. double velocityY = 0.0,
  10. double scale = 0.0,
})

Implementation

GestureEventInit({
  bool bubbles = false,
  bool cancelable = false,
  this.state = '',
  this.direction = '',
  this.rotation = 0.0,
  this.deltaX = 0.0,
  this.deltaY = 0.0,
  this.velocityX = 0.0,
  this.velocityY = 0.0,
  this.scale = 0.0,
})
    : super(bubbles: bubbles, cancelable: cancelable);