PolylineProperties<T extends Object> constructor

const PolylineProperties<T extends Object>({
  1. List<double>? colorsStop = PolylineProperties.defColorsStop,
  2. bool useStrokeWidthInMeter = PolylineProperties.defUseStrokeWidthInMeter,
  3. List<Color>? gradientColors = PolylineProperties.defGradientColors,
  4. double strokeWidth = PolylineProperties.defStrokeWidth,
  5. StrokePattern isDotted = PolylineProperties.defIsDotted,
  6. StrokeCap strokeCap = PolylineProperties.defStrokeCap,
  7. StrokeJoin strokeJoin = PolylineProperties.defStrokeJoin,
  8. Map<LayerPolylineIndexes, String>? layerProperties,
  9. T? hintValue,
  10. double borderStrokeWidth = PolylineProperties.defBorderStokeWidth,
  11. Color borderColor = PolylineProperties.defBorderColor,
  12. Color color = PolylineProperties.defFillColor,
})

Implementation

const PolylineProperties({
  this.colorsStop = PolylineProperties.defColorsStop,
  this.useStrokeWidthInMeter = PolylineProperties.defUseStrokeWidthInMeter,
  this.gradientColors = PolylineProperties.defGradientColors,
  this.strokeWidth = PolylineProperties.defStrokeWidth,
  this.isDotted = PolylineProperties.defIsDotted,
  this.strokeCap = PolylineProperties.defStrokeCap,
  this.strokeJoin = PolylineProperties.defStrokeJoin,
  this.layerProperties,
  this.hintValue,
  this.borderStrokeWidth = PolylineProperties.defBorderStokeWidth,
  this.borderColor = PolylineProperties.defBorderColor,
  this.color = PolylineProperties.defFillColor,
});