animation property
AnimationController
get
animation
Implementation
AnimationController get animation => _animation;
set
animation
(AnimationController value)
Implementation
set animation(AnimationController value) {
if (_animation == value) return;
_animation.removeListener(markNeedsPaint);
_animation = value;
_animation.addListener(markNeedsPaint);
}