PathStyle constructor

const PathStyle({
  1. Color32? fill,
  2. FillRule fillRule = FillRule.nonZero,
  3. Color32? stroke,
  4. double strokeWidth = 1.0,
  5. StrokeCap strokeCap = StrokeCap.butt,
  6. StrokeJoin strokeJoin = StrokeJoin.miter,
  7. double miterLimit = 4.0,
  8. List<double>? dash,
})

Implementation

const PathStyle({
  this.fill,
  this.fillRule = FillRule.nonZero,
  this.stroke,
  this.strokeWidth = 1.0,
  this.strokeCap = StrokeCap.butt,
  this.strokeJoin = StrokeJoin.miter,
  this.miterLimit = 4.0,
  this.dash,
});