PathCommandType enum

The available types of path verbs.

Used by PathCommand.type.

Inheritance

Constructors

PathCommandType()
const

Values

move → const PathCommandType

A path verb that picks up the pen to move it to another coordinate, starting a new contour.

line → const PathCommandType

A path verb that draws a line from the current point to a specified coordinate.

cubic → const PathCommandType

A path verb that draws a Bezier curve from the current point to a specified point using two control points.

close → const PathCommandType

A path verb that draws a line from the current point to the starting point of the current contour.

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