TriggerValWithControllerEntry class

This class is used for AnimationControllerManager to manipulate a double-linked list which stored AnimationController and its trigger value.

If you want a custom controller list, see ControllerManagerBase and LinkedControllerManager.

Inheritance

Constructors

TriggerValWithControllerEntry({required AnimationController controller, required double triggerValue})

Properties

controller AnimationController
final
hashCode int
The hash code for this object.
no setterinherited
list LinkedList<TriggerValWithControllerEntry>?
The linked list containing this element.
no setterinherited
next TriggerValWithControllerEntry?
The successor of this element in its linked list.
no setterinherited
previous TriggerValWithControllerEntry?
The predecessor of this element in its linked list.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
triggerValue double
final

Methods

insertAfter(TriggerValWithControllerEntry entry) → void
Insert an element after this element in this element's linked list.
inherited
insertBefore(TriggerValWithControllerEntry entry) → void
Insert an element before this element in this element's linked list.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override
Unlink the element from its linked list.
inherited

Operators

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