LineStyle constructor

const LineStyle({
  1. double strokeWidth = 5.0,
  2. double gradientLength = 0.0,
  3. Color outlineColor = const ui.Color(0x00000000),
  4. double outlineWidth = 0.0,
  5. bool innerOutlineEnabled = false,
  6. double turnRadius = 10.0,
  7. double arcApproximationStep = 12.0,
  8. double dashLength = 0.0,
  9. double gapLength = 0.0,
  10. double dashOffset = 0.0,
})

Implementation

const LineStyle({
  this.strokeWidth = 5.0,
  this.gradientLength = 0.0,
  this.outlineColor = const ui.Color(0x00000000),
  this.outlineWidth = 0.0,
  this.innerOutlineEnabled = false,
  this.turnRadius = 10.0,
  this.arcApproximationStep = 12.0,
  this.dashLength = 0.0,
  this.gapLength = 0.0,
  this.dashOffset = 0.0,
});