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