PolylineOptions constructor
const
PolylineOptions({
- required List<
GeoPoint> points, - LogicalPixel width = const LogicalPixel(1),
- Color color = const Color(),
- double erasedPart = 0,
- DashedPolylineOptions? dashedPolylineOptions = null,
- GradientPolylineOptions? gradientPolylineOptions = null,
- bool visible = true,
- Object? userData = const {},
- ZIndex zIndex = const ZIndex(0),
- LevelId? levelId = null,
Implementation
const PolylineOptions({
required this.points,
this.width = const LogicalPixel(1),
this.color = const Color(),
this.erasedPart = 0,
this.dashedPolylineOptions = null,
this.gradientPolylineOptions = null,
this.visible = true,
this.userData = const {},
this.zIndex = const ZIndex(0),
this.levelId = null
});