PolylineAnnotation constructor

PolylineAnnotation({
  1. required String id,
  2. required LineString geometry,
  3. LineJoin? lineJoin,
  4. double? lineSortKey,
  5. double? lineZOffset,
  6. double? lineBlur,
  7. int? lineBorderColor,
  8. double? lineBorderWidth,
  9. int? lineColor,
  10. double? lineGapWidth,
  11. double? lineOffset,
  12. double? lineOpacity,
  13. String? linePattern,
  14. double? lineWidth,
})

Implementation

PolylineAnnotation({
  required this.id,
  required this.geometry,
  this.lineJoin,
  this.lineSortKey,
  this.lineZOffset,
  this.lineBlur,
  this.lineBorderColor,
  this.lineBorderWidth,
  this.lineColor,
  this.lineGapWidth,
  this.lineOffset,
  this.lineOpacity,
  this.linePattern,
  this.lineWidth,
});