IDKitEndDetails constructor

IDKitEndDetails({
  1. double pressure = 0,
  2. PointerDeviceKind? kind,
  3. Velocity velocity = Velocity.zero,
  4. int pointerCount = 0,
})

Implementation

IDKitEndDetails({
  this.pressure = 0,
  this.kind,
  Velocity velocity = Velocity.zero,
  int pointerCount = 0,
}) : super(
        velocity: velocity,
        pointerCount: pointerCount,
      );