animation property

CurvedAnimation animation
getter/setter pairinherited

Implementation

late var animation = CurvedAnimation(
  curve: widget.curve,
  parent: controller,
)..addListener(
    () => value = lerp(v, oldValue, newValue),
  );