EasingType enum

Enum describing animation easing curves.

Inheritance

Constructors

EasingType()
const

Values

easeIn → const EasingType

Ease in with an animation curve similar to CSS ease-in.

easeOut → const EasingType

Ease out with an animation curve similar to CSS ease-out.

easeInOut → const EasingType

Ease in and then out with an animation curve similar to CSS ease-in-out.

linear → const EasingType

No easing, similar to CSS linear.

customBezier → const EasingType

Custom easing. The value is an array of four numbers, each between 0 and 1, specifying the control points of a cubic bezier curve.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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

Constants

values → const List<EasingType>
A constant List of the values in this enum, in order of their declaration.