PolylineOption constructor

PolylineOption({
  1. required List<LatLng> coordinateList,
  2. double width = 5,
  3. Color strokeColor = Colors.green,
  4. ImageProvider<Object>? textureProvider,
  5. LineCapType? lineCapType,
  6. LineJoinType? lineJoinType,
  7. DashType? dashType,
})

Implementation

PolylineOption({
  required this.coordinateList,
  this.width = 5,
  this.strokeColor = Colors.green,
  this.textureProvider,
  this.lineCapType,
  this.lineJoinType,
  this.dashType,
});