ShapeContactEvent constructor

ShapeContactEvent({
  1. required dynamic type,
  2. Body? bodyA,
  3. Body? bodyB,
  4. Shape? shapeA,
  5. Shape? shapeB,
})

Implementation

ShapeContactEvent({
  required type,
  this.bodyA,
  this.bodyB,
  this.shapeA,
  this.shapeB
}):super(type);