PolyLineLayer constructor

PolyLineLayer({
  1. required List<LatLng> points,
  2. Color? color,
  3. double? width,
  4. required List<Color> gradientColors,
})

Implementation

PolyLineLayer({
  required this.points,
  this.color,
  this.width,
  required this.gradientColors,
});