Animation constructor

Animation({
  1. dynamic type,
  2. dynamic exitType,
})

This is constructor of Animation type,exitType is contains dynamic value

Implementation

Animation({
  this.type,
  this.exitType,
});