StrokeCap enum Null safety
Styles to use for line endings.
See also:
- Paint.strokeCap for how this value is used.
- StrokeJoin for the different kinds of line segment joins.
Constructors
- StrokeCap()
-
const
Values
- butt → const StrokeCap
-
Begin and end contours with a flat edge and no extension.
Compare to the square cap, which has the same shape, but extends past the end of the line by half a stroke width.
StrokeCap()
- round → const StrokeCap
-
Begin and end contours with a semi-circle extension.
The cap is colored in the diagram above to highlight it: in normal use it is the same color as the line.
StrokeCap()
- square → const StrokeCap
-
Begin and end contours with a half square extension. This is similar to extending each contour by half the stroke width (as given by Paint.strokeWidth).
The cap is colored in the diagram above to highlight it: in normal use it is the same color as the line.
Compare to the butt cap, which has the same shape, but doesn't extend past the end of the line.
StrokeCap()
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited