StepJump enum

Describes how the transition behaves at the start and end when using Curve.steps.

Inheritance
Available extensions

Values

start → const StepJump

Denotes a left-continuous function, so that the first jump happens when the transition begins.

const StepJump('jump-start')
end → const StepJump

Denotes a right-continuous function, so that the last jump happens when the animation ends.

const StepJump('jump-end')
none → const StepJump

There is no jump on either end. Instead, holding at both the 0% mark and the 100% mark, each for 1/n of the duration.

const StepJump('jump-none')
both → const StepJump

Includes pauses at both the 0% and 100% marks, effectively adding a step during the transition time.

const StepJump('jump-both')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
The css value
final

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<StepJump>
A constant List of the values in this enum, in order of their declaration.