ContactEvent constructor

ContactEvent({
  1. required dynamic type,
  2. Body? bodyA,
  3. Body? bodyB,
})

Implementation

ContactEvent({
  required type,
  this.bodyA,
  this.bodyB
}):super(type);