PolylineOptions constructor

const PolylineOptions({
  1. String? polylineJoin,
  2. double? polylineOpacity,
  3. Color? polylineColor,
  4. double? polylineWidth,
  5. double? polylineGapWidth,
  6. double? polylineOffset,
  7. double? polylineBlur,
  8. String? polylinePattern,
  9. List<LatLng>? geometry,
  10. bool? draggable,
})

Creates a set of line configuration options.

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

Implementation

const PolylineOptions({
  this.polylineJoin,
  this.polylineOpacity,
  this.polylineColor,
  this.polylineWidth,
  this.polylineGapWidth,
  this.polylineOffset,
  this.polylineBlur,
  this.polylinePattern,
  this.geometry,
  this.draggable,
});