PolygonOptions constructor

const PolygonOptions({
  1. double? polygonOpacity,
  2. Color? polygonColor,
  3. Color? polygonOutlineColor,
  4. String? polygonPattern,
  5. List<List<LatLng>>? geometry,
  6. bool? draggable,
})

Creates a set of fill configuration options.

By default, every non-specified field is null, meaning no desire to change fill defaults or current configuration.

Implementation

const PolygonOptions(
    {this.polygonOpacity,
    this.polygonColor,
    this.polygonOutlineColor,
    this.polygonPattern,
    this.geometry,
    this.draggable});