buildAnimation method

Animation<double> buildAnimation(
  1. AnimationController controller, {
  2. Curve? curve,
})

Builds a sub-animation based on the properties of this entry.

Implementation

Animation<double> buildAnimation(
  AnimationController controller, {
  Curve? curve,
}) {
  return buildSubAnimation(controller, begin, end, curve ?? this.curve);
}