Animated constructor

const Animated({
  1. Key? key,
  2. required DisposedWidgetBuilder<AnimationController> builder,
  3. double? value,
  4. Duration? duration,
  5. Duration? reverseDuration,
  6. String? debugLabel,
  7. double? lowerBound,
  8. double? upperBound,
  9. AnimationBehavior? animationBehavior,
})

Implementation

const Animated({
  Key? key,
  required this.builder,
  this.value,
  this.duration,
  this.reverseDuration,
  this.debugLabel,
  this.lowerBound,
  this.upperBound,
  this.animationBehavior,
}) : super(key: key);