ChartDoubleTween.fromAnimator constructor

ChartDoubleTween.fromAnimator(
  1. AnimatorProps animator, {
  2. bool allowCross = false,
})

Implementation

ChartDoubleTween.fromAnimator(
  AnimatorProps animator, {
  bool allowCross = false,
}) : super(
        animator.lowerBound,
        animator.upperBound,
        duration: animator.duration,
        behavior: animator.behavior,
        reverseDuration: animator.reverseDuration,
        curve: animator.curve,
        delay: Duration.zero,
      );