linePath method

Path linePath({
  1. double? cornerRadius,
})

Implementation

Path linePath({double? cornerRadius}) {
  return cornerRadius == null
      ? _openSharpPath(this)
      : PathExtra.line(Line(points: this, smoothLevel: cornerRadius));
}