Event constructor

Event({
  1. String? type,
  2. dynamic target,
  3. dynamic attachment,
  4. dynamic action,
  5. int direction = 1,
  6. String? mode,
  7. int loopDelta = 0,
  8. Object3D? object,
  9. dynamic value,
  10. dynamic data,
})

Implementation

Event({
  this.type,
  this.target,
  this.attachment,
  this.action,
  this.direction = 1,
  this.mode,
  this.loopDelta = 0,
  this.object,
  this.value,
  this.data
});