StaticPathBorder constructor

const StaticPathBorder({
  1. BorderSide side = BorderSide.none,
  2. StrokeCap strokeCap = .butt,
  3. StrokeJoin strokeJoin = .miter,
  4. double strokeMiterLimit = 4.0,
  5. double squash = 0.0,
})

Implementation

const StaticPathBorder({
  super.side,
  super.strokeCap,
  super.strokeJoin,
  super.strokeMiterLimit,
  this.squash = 0.0,
});