Polygon constructor

Polygon({
  1. required List<LatLng> coordinates,
  2. required String color,
  3. int outerLineWidth = 2,
  4. bool isClickable = false,
})

Implementation

Polygon({
  required this.coordinates,
  required this.color,
  this.outerLineWidth = 2,
  this.isClickable = false,
});