GeoPolyLine constructor

GeoPolyLine({
  1. required String name,
  2. String? description,
  3. required List<LatLng> points,
  4. required Color color,
  5. double width = 2,
})

Implementation

GeoPolyLine({
  required this.name,
  this.description,
  required this.points,
  required this.color,
  this.width = 2,
});