PolyLineLayer constructor

PolyLineLayer({
  1. String? id,
  2. required List<LatLng> points,
  3. Color? color,
  4. double? width,
  5. required List<Color> gradientColors,
  6. bool editable = false,
})

Implementation

PolyLineLayer({
  this.id,
  required this.points,
  this.color,
  this.width,
  required this.gradientColors,
  this.editable = false,
});