GeoPolygon constructor

GeoPolygon({
  1. required String name,
  2. String? description,
  3. bool isDotted = false,
  4. required List<LatLng> points,
  5. required Color color,
  6. required Color borderColor,
})

Implementation

GeoPolygon({
  required this.name,
  this.description,
  this.isDotted = false,
  required this.points,
  required this.color,
  required this.borderColor,
});