AnimationInfo constructor

AnimationInfo({
  1. required List<Effect> effectsBuilder()?,
  2. bool loop = false,
  3. bool reverse = false,
  4. bool applyInitialState = true,
})

Implementation

AnimationInfo({
  required this.effectsBuilder,
  this.loop = false,
  this.reverse = false,
  this.applyInitialState = true,
});