PolygonAnnotation constructor

PolygonAnnotation({
  1. required String id,
  2. required Polygon geometry,
  3. double? fillSortKey,
  4. int? fillColor,
  5. double? fillOpacity,
  6. int? fillOutlineColor,
  7. String? fillPattern,
  8. double? fillZOffset,
})

Implementation

PolygonAnnotation({
  required this.id,
  required this.geometry,
  this.fillSortKey,
  this.fillColor,
  this.fillOpacity,
  this.fillOutlineColor,
  this.fillPattern,
  this.fillZOffset,
});