AnimatorProps constructor

const AnimatorProps({
  1. Duration duration = const Duration(milliseconds: 800),
  2. Duration? reverseDuration,
  3. AnimationBehavior behavior = AnimationBehavior.normal,
  4. Curve curve = Curves.easeInOut,
  5. double lowerBound = 0,
  6. double upperBound = 1,
})

Implementation

const AnimatorProps({
  this.duration = const Duration(milliseconds: 800),
  this.reverseDuration,
  this.behavior = AnimationBehavior.normal,
  this.curve = Curves.easeInOut,
  this.lowerBound = 0,
  this.upperBound = 1,
});