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 VariableLengthPatternItem._(
patternItemType: PatternItemType.gap, length: length);
}