FillOptions constructor

const FillOptions({
  1. double? fillOpacity,
  2. String? fillColor,
  3. String? fillOutlineColor,
  4. String? fillPattern,
  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 FillOptions(
    {this.fillOpacity,
    this.fillColor,
    this.fillOutlineColor,
    this.fillPattern,
    this.geometry,
    this.draggable});