MultiTweenValues<P> class

Represents the result of a MultiTween processed by an animation.

You don't need to create it yourself. It gets created by MultiTween.transform according to Flutter's animation process.

See MultiTweenValues.get to get the animated values.

Constructors

MultiTweenValues(Duration _maxDuration, Map<P, _TweenTrack> _tracks, double time)
You don't need to construct this class yourself. It's the result of animating a MultiTween.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
time double
final

Methods

get<T>(P property) → T
Returns the animated value for a specified property regarding the current position (in time) of the animation.
getOrElse<T>(P property, T defaultValue) → T
Returns the animated value for a specified property regarding the current position (in time) of the animation, similar to get.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited