StrokeCap enum
Styles to use for line endings.
See Paint.strokeCap.
Constants
- butt → const StrokeCap
-
Begin and end contours with a flat edge and no extension.
const StrokeCap(0)
- round → const StrokeCap
-
Begin and end contours with a semi-circle extension.
const StrokeCap(1)
- 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).
const StrokeCap(2)
-
values
→ const List<
StrokeCap> -
A constant List of the values in this enum, in order of their declaration.
const List<
StrokeCap>
Properties
Methods
-
toString(
) → String - Returns a string representation of this object.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
inherited