dash static method
A dash used in the stroke pattern for a Polyline.
length
has to be non-negative.
Implementation
static PatternItem dash(double length) {
assert(length >= 0.0);
return PatternItem._(<Object>['dash', length]);
}
A dash used in the stroke pattern for a Polyline.
length
has to be non-negative.
static PatternItem dash(double length) {
assert(length >= 0.0);
return PatternItem._(<Object>['dash', length]);
}