UChartAnimator constructor

const UChartAnimator({
  1. required Widget builder(
    1. double t
    ),
  2. required Duration duration,
  3. required Curve curve,
  4. bool animate = true,
  5. Key? key,
})

Implementation

const UChartAnimator({
  required this.builder,
  required this.duration,
  required this.curve,
  this.animate = true,
  super.key,
});