PolygonLayer constructor

const PolygonLayer({
  1. Key? key,
  2. List<Polygon> polygons = const [],
  3. bool polygonCulling = false,
})

Implementation

const PolygonLayer({
  super.key,
  this.polygons = const [],
  this.polygonCulling = false,
});