AnimationStyle constructor

AnimationStyle({
  1. Curve? curve,
  2. Duration? duration,
  3. Curve? reverseCurve,
  4. Duration? reverseDuration,
})

Creates an instance of Animation Style class.

Implementation

AnimationStyle({
  this.curve,
  this.duration,
  this.reverseCurve,
  this.reverseDuration,
});