LineJoin enum

The display of lines when joining. Default value: "miter".

Inheritance
Available extensions

Values

BEVEL → const LineJoin

A join with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line's width.

ROUND → const LineJoin

A join with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line.

MITER → const LineJoin

A join with a sharp, angled corner which is drawn with the outer sides beyond the endpoint of the path until they meet.

NONE → const LineJoin

Line segments are not joined together, each one creates a separate line. Useful in combination with line-pattern. Line-cap property is not respected. Can't be used with data-driven styling.

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