PolygonAnnotationOptions constructor

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

Implementation

PolygonAnnotationOptions({
  required this.geometry,
  this.fillSortKey,
  this.fillColor,
  this.fillOpacity,
  this.fillOutlineColor,
  this.fillPattern,
});