LineOptions constructor

const LineOptions({
  1. String? lineJoin,
  2. double? lineOpacity,
  3. String? lineColor,
  4. double? lineWidth,
  5. double? lineGapWidth,
  6. double? lineOffset,
  7. double? lineBlur,
  8. String? linePattern,
  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 LineOptions({
  this.lineJoin,
  this.lineOpacity,
  this.lineColor,
  this.lineWidth,
  this.lineGapWidth,
  this.lineOffset,
  this.lineBlur,
  this.linePattern,
  this.geometry,
  this.draggable,
});