Creates a proxy animation.
If the animation argument is omitted, the proxy animation will have the status AnimationStatus.dismissed and a value of 0.0.
Source
ProxyAnimation([Animation<double> animation]) { _parent = animation; if (_parent == null) { _status = AnimationStatus.dismissed; _value = 0.0; } }