value property
The current value of the animation.
Implementation
@override
T get value{
Object output = (parent.value - (1.0 - last)) / (last);
return max((0.0 as T), output as T);
}
The current value of the animation.
@override
T get value{
Object output = (parent.value - (1.0 - last)) / (last);
return max((0.0 as T), output as T);
}