Polyline constructor

Polyline({
  1. required LatLng startLatLng,
  2. required LatLng endLatLng,
  3. required int width,
  4. required String color,
  5. required String apiKey,
})

Implementation

Polyline({
  required this.startLatLng,
  required this.endLatLng,
  required this.width,
  required this.color,
  required this.apiKey
});