ChartRectTween constructor

ChartRectTween(
  1. Rect begin,
  2. Rect end, {
  3. bool allowCross = false,
  4. AnimationBehavior behavior = AnimationBehavior.normal,
  5. Curve curve = Curves.easeInOut,
  6. Duration delay = Duration.zero,
  7. Duration duration = const Duration(milliseconds: 800),
  8. double lowerBound = 0,
  9. Duration? reverseDuration,
  10. double upperBound = 1,
})

Implementation

ChartRectTween(
  super.begin,
  super.end, {
  super.allowCross,
  super.behavior,
  super.curve,
  super.delay,
  super.duration,
  super.lowerBound,
  super.reverseDuration,
  super.upperBound,
});